From 557ee27f437a04054afa8f649b8daff61be25c60 Mon Sep 17 00:00:00 2001 From: luying Date: Wed, 23 Dec 2020 20:32:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=8C=E7=89=B9=E6=8A=80?= =?UTF-8?q?=E6=88=98=E5=8A=9B=E5=8A=A0=E6=88=90=E9=80=9A=E8=BF=87=E6=97=B6?= =?UTF-8?q?=E8=A3=85=E8=A1=A8=E8=8E=B7=E5=BE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/servers/role/handler/heroHandler.ts | 2 +- shared/pubUtils/dictionary/DicFashions.ts | 7 +- shared/pubUtils/dictionary/DicHeroSkill.ts | 12 +- shared/pubUtils/playerCe.ts | 119 +- shared/resource/jsons/dic_goods.json | 5490 ++++++++++++++++- shared/resource/jsons/dic_zyz_fashions.json | 1060 +++- shared/resource/jsons/dic_zyz_heroskill.json | 936 +-- shared/resource/jsons/dic_zyz_se.json | 418 +- shared/resource/jsons/dic_zyz_skill.json | 111 +- 9 files changed, 7353 insertions(+), 802 deletions(-) diff --git a/game-server/app/servers/role/handler/heroHandler.ts b/game-server/app/servers/role/handler/heroHandler.ts index bc4bb6e14..f44214ed0 100644 --- a/game-server/app/servers/role/handler/heroHandler.ts +++ b/game-server/app/servers/role/handler/heroHandler.ts @@ -76,7 +76,7 @@ export class HeroHandler { let curHero = await HeroModel.createHero({ roleId, serverId, roleName, hid, hName, star, quality, job, skins:[{id: initialSkin, enable: true}] }); - await calPlayerCeAndSave(sid, roleId, [curHero], HERO_SYSTEM_TYPE.STAR, getAllAttrStage()); + await calPlayerCeAndSave(sid, roleId, [curHero], HERO_SYSTEM_TYPE.INIT); return resResult(STATUS.SUCCESS, {curHero}); } diff --git a/shared/pubUtils/dictionary/DicFashions.ts b/shared/pubUtils/dictionary/DicFashions.ts index e128ed592..f681d425f 100644 --- a/shared/pubUtils/dictionary/DicFashions.ts +++ b/shared/pubUtils/dictionary/DicFashions.ts @@ -1,12 +1,12 @@ // 时装表 -import { decodeArrayListStr, readJsonFile, parseNumberList } from '../util'; +import { decodeArrayListStr, readJsonFile } from '../util'; import { FILENAME } from '../../consts'; export interface DicFashions { // 时装id readonly id: number; - // 增加的被动技能 - readonly seid: Array; + // 指向heroSkill表 + readonly skillId: number; // 全局加成 readonly globalAttr: Array<{id: number, number: number}>; // 单体加成 @@ -20,7 +20,6 @@ let arr = JSON.parse(str); export const dicFashions = new Map(); arr.forEach(o => { - o.seid = parseNumberList(o.seid); o.globalAttr = parseAttr(o.globalAttr); o.actorAttr = parseAttr(o.actorAttr); dicFashions.set(o.id, o); diff --git a/shared/pubUtils/dictionary/DicHeroSkill.ts b/shared/pubUtils/dictionary/DicHeroSkill.ts index 9da637772..4c083b741 100644 --- a/shared/pubUtils/dictionary/DicHeroSkill.ts +++ b/shared/pubUtils/dictionary/DicHeroSkill.ts @@ -9,9 +9,9 @@ export interface DicHeroSkill { // 技能名 readonly name: string; // 星级解锁 - readonly starSeidArr: Array<{star: number, value: number}>; + readonly starSeidArr: Array<{star: number, value: number, type: number}>; // 觉醒解锁 - readonly colorStarSeidArr: Array<{star: number, value: number}>; + readonly colorStarSeidArr: Array<{star: number, value: number, type: number}>; } @@ -26,15 +26,15 @@ arr.forEach(o => { }); function parseSeid(str: string) { - let arr = new Array<{star: number, value: number}>(); + let arr = new Array<{star: number, value: number, type: number}>(); if(!str) return arr; let decodeArr = decodeArrayListStr(str); - for(let [star, value] of decodeArr) { - if(isNaN(parseInt(star)) || isNaN(parseInt(value))) { + for(let [star, value, type] of decodeArr) { + if(isNaN(parseInt(star)) || isNaN(parseInt(value)) || isNaN(parseInt(type))) { continue; } - arr.push({ star: parseInt(star), value: parseInt(value)}); + arr.push({ star: parseInt(star), value: parseInt(value), type: parseInt(type)}); } return arr; } \ No newline at end of file diff --git a/shared/pubUtils/playerCe.ts b/shared/pubUtils/playerCe.ts index 39166bd47..e072bfe49 100644 --- a/shared/pubUtils/playerCe.ts +++ b/shared/pubUtils/playerCe.ts @@ -30,13 +30,13 @@ export function calPlayerCe(globalCeAttr: CeAttr, hero: HeroType, type: number, if (type == HERO_SYSTEM_TYPE.INIT) { reIncAttr = calHeroInitIncAttr(hero, addSeidList, removeSeidList); // args: 升的星盘 } else if (type == HERO_SYSTEM_TYPE.STAR) { - reIncAttr = calHeroStarIncAttr(hero, args, addSeidList); // args: 升的星盘 + reIncAttr = calHeroStarIncAttr(hero, args, addSeidList, removeSeidList); // args: 升的星盘 } else if (type == HERO_SYSTEM_TYPE.TRAIN) { reIncAttr = calHeroTrainIncAttr(hero); } else if (type == HERO_SYSTEM_TYPE.STAGEUP) { - reIncAttr = calHeroJobStageUpIncAttr(hero, args, addSeidList, removeSeidList ) + reIncAttr = calHeroJobStageUpIncAttr(hero, args, addSeidList, removeSeidList ); } else if (type == HERO_SYSTEM_TYPE.SKIN) { - reIncAttr = calHeroWearSkinIncAttr(hero, args); + reIncAttr = calHeroWearSkinIncAttr(hero, args, addSeidList, removeSeidList ); } else if (type == HERO_SYSTEM_TYPE.FAVOUR) { reIncAttr = calHeroFavourUpIncAttr(hero, args); } else if (type == HERO_SYSTEM_TYPE.CONNECT) { @@ -86,6 +86,8 @@ export async function calPlayerCeAndSave(roleId: string, heros: Array, if (type == HERO_SYSTEM_TYPE.INIT) { reIncAttr = calRoleInitIncAttr(heros, role.globalCeAttr); // 全局变量增 + } else if (type == HERO_SYSTEM_TYPE.ADD_SKIN) { + reIncAttr = calHeroAddSkin(args, role.globalCeAttr); } for (let attrName in reIncAttr) { @@ -110,12 +112,16 @@ export async function calPlayerCeAndSave(roleId: string, heros: Array, // 初始战力 export function calHeroInitIncAttr(hero: HeroType, addSeidList: Array, removeSeidList: Array) { - let res1 = calHeroStarIncAttr(hero, getAllAttrStage(), addSeidList); - let hero1 = combineHeroCeAttr(hero, res1) - calHeroJobStageUpIncAttr(hero1, [0], addSeidList, removeSeidList); + let res1 = calHeroStarIncAttr(hero, getAllAttrStage(), addSeidList, removeSeidList, true); + let hero1 = combineHeroCeAttr(hero, res1); - console.log(JSON.stringify(res1)); - return res1 + let curSkin = hero.skins.find(cur => cur.enable); + let res2 = calHeroWearSkinIncAttr(hero1, [curSkin?curSkin.id:0, 0], addSeidList, removeSeidList, true); + let hero2 = combineHeroCeAttr(hero, res2); + + calHeroJobStageUpIncAttr(hero2, [0], addSeidList, removeSeidList); + + return res2 } export function calRoleInitIncAttr(heros: HeroType[], globalCeAttr: CeAttr) { @@ -144,18 +150,28 @@ function combineHeroCeAttr(originalHero: HeroType, result: CeAttr) { return hero; } -export function calHeroStarIncAttr (hero: HeroType, args: Array, addSeidList: Array) { - let {star, starStage, quality, colorStar, colorStarStage, ceAttr} = hero; +/** + * + * @param hero HeroType 武将更新后的值 + * @param args number[] 参数,表示需要更新多少个维 + * @param addSeidList number[] 用于更新被动 + * @param removeSeidList number[] 用于更新被动 + * @param isInit boolean 是否是初次创建武将 + */ +export function calHeroStarIncAttr (hero: HeroType, args: Array, addSeidList: Array, removeSeidList: Array, isInit = false) { + let {star, starStage, quality, colorStar, colorStarStage, ceAttr, skins} = hero; + let originStar = star, originColorStar = colorStar; + let res: CeAttr = {}; const dicHero = gameData.hero.get(hero.hid); const isWake = colorStar > 0; // 是否觉醒,只要激活了觉醒,彩星就会 > 1 if(isWake) { - if(colorStarStage == ABI_STAGE.START) colorStar = colorStar -1; + if(colorStarStage == ABI_STAGE.START) originColorStar = colorStar - 1; } else { - if(starStage == ABI_STAGE.START) star = star -1; + if(starStage == ABI_STAGE.START) originStar = star - 1; } - const dicStar = isWake? getHeroWakeByQuality(quality, colorStar): getHeroStarByQuality(quality, star); // 星级表 + const dicStar = isWake? getHeroWakeByQuality(quality, originColorStar): getHeroStarByQuality(quality, originStar); // 星级表 for(let stage of args) { @@ -174,26 +190,43 @@ export function calHeroStarIncAttr (hero: HeroType, args: Array, addSeid } // 解锁技能 - if(dicHero.skill){ - let {starSeidArr, colorStarSeidArr} = gameData.heroSkill.get(dicHero.skill); - if(isWake) { - for(let {star, value} of starSeidArr){ - if(hero.star == star){ - addSeidList.push(value, 0); - } - } - } else { - for(let {star, value} of colorStarSeidArr){ - if(hero.colorStar == star){ - addSeidList.push(value, 0); - } - } + let curSkin = skins.find(cur => cur.enable); + let curSeidList = getSeidListOfFashion(curSkin.id, star, colorStar); + let preSeidList = getSeidListOfFashion(curSkin.id, isInit?0:originStar, isInit?0:originColorStar); + for(let [type, seid] of curSeidList) { + if(!preSeidList.has(type)) { + addSeidList.push(seid, 0); + } + } + for(let [type, seid] of preSeidList) { + console.log(type, seid) + if(!curSeidList.has(type)) { + removeSeidList.push(seid, 0); } } return res;//属性增量可以是多个 } +function getSeidListOfFashion(fashionid: number, originStar: number, originColorStar: number) { + let seidList = new Map(); // type => seid + if(!gameData.fashion.has(fashionid)) return seidList; + + let { skillId } = gameData.fashion.get(fashionid); + let { starSeidArr, colorStarSeidArr } = gameData.heroSkill.get(skillId); + for(let {star, value, type} of starSeidArr) { + if(originStar >= star) { + seidList.set(type, value); + } + } + for(let {star, value, type} of colorStarSeidArr) { + if(originColorStar >= star) { + seidList.set(type, value); + } + } + return seidList +} + export function getAllAttrStage () { let attrs = new Array(); // 有升级的属性 1-hp 2-atk 3-def 4-mdef 5-agi 6-luk for(let stage = ABI_STAGE.START + 1; stage <= ABI_STAGE.END; stage++) { @@ -238,21 +271,41 @@ export function calHeroJobStageUpIncAttr(hero: HeroType, args: Array, ad } //穿戴时装 -export function calHeroWearSkinIncAttr(hero: HeroType, args: Array) { +export function calHeroWearSkinIncAttr(hero: HeroType, args: Array, addSeidList: Array, removeSeidList: Array, isInit = false) { let res: CeAttr = {}; let addSkin = gameData.fashion.get(args[0]); let delSkin = gameData.fashion.get(args[1]); let attrName: string; - for (let attr of delSkin.actorAttr) { - attrName = getAtrrNameById(attr.id); - res[attrName] = {fixUp: hero.ceAttr[attrName].fixUp, base: hero.ceAttr[attrName].base, ratioUp: hero.ceAttr[attrName].ratioUp}; - res[attrName].fixUp -= attr.number * HERO_CE_RATIO; + if(delSkin) { + for (let attr of delSkin.actorAttr) { + attrName = getAtrrNameById(attr.id); + res[attrName] = {fixUp: hero.ceAttr[attrName].fixUp, base: hero.ceAttr[attrName].base, ratioUp: hero.ceAttr[attrName].ratioUp}; + res[attrName].fixUp -= attr.number * HERO_CE_RATIO; + } } for (let attr of addSkin.actorAttr) { attrName = getAtrrNameById(attr.id); res[attrName] = {fixUp: hero.ceAttr[attrName].fixUp, base: hero.ceAttr[attrName].base, ratioUp: hero.ceAttr[attrName].ratioUp}; res[attrName].fixUp += attr.number * HERO_CE_RATIO; } + + if(!isInit) { // 初始的时候,这一段技能在calHeroStarIncAttr里计算了,不用重复算 + let { star, colorStar } = hero; + + let curSeidList = getSeidListOfFashion(args[0], star, colorStar); + let preSeidList = getSeidListOfFashion(args[1], star, colorStar); + for(let [type, seid] of curSeidList) { + if(!preSeidList.has(type)) { + removeSeidList.push(seid, 0); + } + } + for(let [type, seid] of preSeidList) { + if(!curSeidList.has(type)) { + addSeidList.push(seid, 0); + } + } + } + return res; } @@ -436,6 +489,8 @@ function getFieldByStage(stage: number, jobid: number) { // 添加技能增加的被动属性 function addSeidEffect(reIncAttr: CeAttr, heroCeAttr: CeAttr,addSeidList: Array, removeSeidList: Array) { + console.log('addSeidList', addSeidList) + console.log('removeSeidList', removeSeidList) let otiginalSeidList = [ {list: addSeidList, multi: 1}, {list: removeSeidList, multi: -1} diff --git a/shared/resource/jsons/dic_goods.json b/shared/resource/jsons/dic_goods.json index 4ef53fbb3..47a9d724d 100644 --- a/shared/resource/jsons/dic_goods.json +++ b/shared/resource/jsons/dic_goods.json @@ -179,6 +179,150 @@ "value": 0, "info": "&" }, + { + "good_id": 6, + "name": "个炼刀", + "lvLimited": 1, + "quality": 5, + "image_id": 5, + "itid": 1, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50001&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 17, + "atk": 13, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, + { + "good_id": 7, + "name": "十炼刀", + "lvLimited": 21, + "quality": 5, + "image_id": 5, + "itid": 1, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50001&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 17, + "atk": 13, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, + { + "good_id": 8, + "name": "千炼刀", + "lvLimited": 41, + "quality": 5, + "image_id": 5, + "itid": 1, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50001&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 17, + "atk": 13, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, + { + "good_id": 9, + "name": "万炼刀", + "lvLimited": 61, + "quality": 5, + "image_id": 5, + "itid": 1, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50001&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 17, + "atk": 13, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, { "good_id": 101, "name": "铁枪", @@ -359,6 +503,150 @@ "value": 0, "info": "&" }, + { + "good_id": 106, + "name": "个炼枪", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 2, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50002&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 353, + "atk": 273, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, + { + "good_id": 107, + "name": "十炼枪", + "lvLimited": 21, + "quality": 5, + "image_id": 1, + "itid": 2, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50002&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 353, + "atk": 273, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, + { + "good_id": 108, + "name": "千炼枪", + "lvLimited": 41, + "quality": 5, + "image_id": 1, + "itid": 2, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50002&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 353, + "atk": 273, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, + { + "good_id": 109, + "name": "万炼枪", + "lvLimited": 61, + "quality": 5, + "image_id": 1, + "itid": 2, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50002&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 353, + "atk": 273, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 13, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&", + "value": 0, + "info": "&" + }, { "good_id": 201, "name": "精铁长刀", @@ -539,6 +827,150 @@ "value": 0, "info": "&" }, + { + "good_id": 206, + "name": "个炼长刀", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 3, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50003&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 16, + "atk": 15, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 207, + "name": "十炼长刀", + "lvLimited": 21, + "quality": 5, + "image_id": 1, + "itid": 3, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50003&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 16, + "atk": 15, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 208, + "name": "千炼长刀", + "lvLimited": 41, + "quality": 5, + "image_id": 1, + "itid": 3, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50003&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 16, + "atk": 15, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 209, + "name": "万炼长刀", + "lvLimited": 61, + "quality": 5, + "image_id": 1, + "itid": 3, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50003&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 16, + "atk": 15, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 301, "name": "漆木弓", @@ -719,6 +1151,150 @@ "value": 0, "info": "&" }, + { + "good_id": 306, + "name": "个炼大弓", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 4, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50004&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 338, + "atk": 307, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 307, + "name": "十炼大弓", + "lvLimited": 21, + "quality": 5, + "image_id": 1, + "itid": 4, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50004&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 338, + "atk": 307, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 308, + "name": "千炼大弓", + "lvLimited": 41, + "quality": 5, + "image_id": 1, + "itid": 4, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50004&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 338, + "atk": 307, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 309, + "name": "万炼大弓", + "lvLimited": 61, + "quality": 5, + "image_id": 1, + "itid": 4, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50004&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 338, + "atk": 307, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 16, + "atk_up": 14, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 401, "name": "木剑", @@ -899,6 +1475,150 @@ "value": 0, "info": "&" }, + { + "good_id": 406, + "name": "牛逼法剑", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 5, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50005&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 16, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 407, + "name": "厉害法剑", + "lvLimited": 21, + "quality": 5, + "image_id": 1, + "itid": 5, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50005&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 16, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 408, + "name": "天坑法剑", + "lvLimited": 41, + "quality": 5, + "image_id": 1, + "itid": 5, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50005&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 16, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 409, + "name": "奖励法剑", + "lvLimited": 61, + "quality": 5, + "image_id": 1, + "itid": 5, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50005&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 16, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 501, "name": "纸扇", @@ -1079,6 +1799,150 @@ "value": 0, "info": "&" }, + { + "good_id": 506, + "name": "七卦扇", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 6, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50006&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 341, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 507, + "name": "六卦扇", + "lvLimited": 21, + "quality": 5, + "image_id": 1, + "itid": 6, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50006&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 341, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 508, + "name": "五卦扇", + "lvLimited": 41, + "quality": 5, + "image_id": 1, + "itid": 6, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50006&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 341, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 509, + "name": "四卦扇", + "lvLimited": 61, + "quality": 5, + "image_id": 1, + "itid": 6, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50006&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 341, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 17, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 601, "name": "精铁拳套", @@ -1259,6 +2123,150 @@ "value": 0, "info": "&" }, + { + "good_id": 606, + "name": "普通拳套", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 7, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50007&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 382, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 607, + "name": "高级拳套", + "lvLimited": 21, + "quality": 5, + "image_id": 1, + "itid": 7, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50007&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 382, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 608, + "name": "牛逼拳套", + "lvLimited": 41, + "quality": 5, + "image_id": 1, + "itid": 7, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50007&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 382, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 609, + "name": "厉害拳套", + "lvLimited": 61, + "quality": 5, + "image_id": 1, + "itid": 7, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50007&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 382, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 701, "name": "木杖", @@ -1439,6 +2447,150 @@ "value": 0, "info": "&" }, + { + "good_id": 706, + "name": "普通杖", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 8, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50008&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 18, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 707, + "name": "高级杖", + "lvLimited": 21, + "quality": 5, + "image_id": 1, + "itid": 8, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50008&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 18, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 708, + "name": "牛逼杖", + "lvLimited": 41, + "quality": 5, + "image_id": 1, + "itid": 8, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50008&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 18, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 709, + "name": "厉害杖", + "lvLimited": 61, + "quality": 5, + "image_id": 1, + "itid": 8, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50008&1|17047&500", + "specialMaterial": "4&104&204&304&404&504&604&704|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 18, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 18, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 2001, "name": "铁制头盔", @@ -1621,6 +2773,150 @@ }, { "good_id": 2006, + "name": "普通战盔", + "lvLimited": 4, + "quality": 5, + "image_id": 1, + "itid": 9, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50009&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 610, + "atk": 0, + "matk": 0, + "def": 62, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2007, + "name": "高级战盔", + "lvLimited": 24, + "quality": 5, + "image_id": 1, + "itid": 9, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50009&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 610, + "atk": 0, + "matk": 0, + "def": 62, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2008, + "name": "牛逼战盔", + "lvLimited": 44, + "quality": 5, + "image_id": 1, + "itid": 9, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50009&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 610, + "atk": 0, + "matk": 0, + "def": 62, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2009, + "name": "厉害战盔", + "lvLimited": 64, + "quality": 5, + "image_id": 1, + "itid": 9, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50009&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 610, + "atk": 0, + "matk": 0, + "def": 62, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2101, "name": "硬布皮帽", "lvLimited": 4, "quality": 1, @@ -1656,7 +2952,7 @@ "info": "&" }, { - "good_id": 2007, + "good_id": 2102, "name": "软布皮帽", "lvLimited": 24, "quality": 2, @@ -1692,7 +2988,7 @@ "info": "&" }, { - "good_id": 2008, + "good_id": 2103, "name": "硬革皮帽", "lvLimited": 44, "quality": 3, @@ -1728,7 +3024,7 @@ "info": "&" }, { - "good_id": 2009, + "good_id": 2104, "name": "银铁头甲", "lvLimited": 64, "quality": 4, @@ -1764,7 +3060,7 @@ "info": "&" }, { - "good_id": 2010, + "good_id": 2105, "name": "金缕头甲", "lvLimited": 84, "quality": 5, @@ -1800,7 +3096,151 @@ "info": "&" }, { - "good_id": 2011, + "good_id": 2106, + "name": "普通头甲", + "lvLimited": 4, + "quality": 5, + "image_id": 1, + "itid": 10, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50010&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 28, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2107, + "name": "高级头甲", + "lvLimited": 24, + "quality": 5, + "image_id": 1, + "itid": 10, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50010&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 28, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2108, + "name": "牛逼头甲", + "lvLimited": 44, + "quality": 5, + "image_id": 1, + "itid": 10, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50010&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 28, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2109, + "name": "厉害头甲", + "lvLimited": 64, + "quality": 5, + "image_id": 1, + "itid": 10, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50010&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 28, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2201, "name": "粗布头巾", "lvLimited": 4, "quality": 1, @@ -1836,7 +3276,7 @@ "info": "&" }, { - "good_id": 2012, + "good_id": 2202, "name": "细布儒巾", "lvLimited": 24, "quality": 2, @@ -1872,7 +3312,7 @@ "info": "&" }, { - "good_id": 2013, + "good_id": 2203, "name": "真丝头巾", "lvLimited": 44, "quality": 3, @@ -1908,7 +3348,7 @@ "info": "&" }, { - "good_id": 2014, + "good_id": 2204, "name": "贤良法冠", "lvLimited": 64, "quality": 4, @@ -1944,7 +3384,7 @@ "info": "&" }, { - "good_id": 2015, + "good_id": 2205, "name": "无极法冠", "lvLimited": 84, "quality": 5, @@ -1979,6 +3419,150 @@ "value": 0, "info": "&" }, + { + "good_id": 2206, + "name": "普通法冠", + "lvLimited": 4, + "quality": 5, + "image_id": 1, + "itid": 11, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50011&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 597, + "atk": 0, + "matk": 0, + "def": 50, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2207, + "name": "高级法冠", + "lvLimited": 24, + "quality": 5, + "image_id": 1, + "itid": 11, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50011&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 597, + "atk": 0, + "matk": 0, + "def": 50, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2208, + "name": "牛逼法冠", + "lvLimited": 44, + "quality": 5, + "image_id": 1, + "itid": 11, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50011&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 597, + "atk": 0, + "matk": 0, + "def": 50, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 2209, + "name": "厉害法冠", + "lvLimited": 64, + "quality": 5, + "image_id": 1, + "itid": 11, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50011&1|17049&500", + "specialMaterial": "2004&2009&2014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 597, + "atk": 0, + "matk": 0, + "def": 50, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 3001, "name": "铁制胸甲", @@ -2161,6 +3745,150 @@ }, { "good_id": 3006, + "name": "普通宝甲", + "lvLimited": 7, + "quality": 5, + "image_id": 1, + "itid": 12, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50012&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 18, + "atk": 14, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3007, + "name": "高级宝甲", + "lvLimited": 27, + "quality": 5, + "image_id": 1, + "itid": 12, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50012&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 18, + "atk": 14, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3008, + "name": "牛逼宝甲", + "lvLimited": 47, + "quality": 5, + "image_id": 1, + "itid": 12, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50012&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 18, + "atk": 14, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3009, + "name": "厉害宝甲", + "lvLimited": 67, + "quality": 5, + "image_id": 1, + "itid": 12, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50012&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 18, + "atk": 14, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3101, "name": "硬布纸甲", "lvLimited": 7, "quality": 1, @@ -2196,7 +3924,7 @@ "info": "&" }, { - "good_id": 3007, + "good_id": 3102, "name": "双层棉甲", "lvLimited": 27, "quality": 2, @@ -2232,7 +3960,7 @@ "info": "&" }, { - "good_id": 3008, + "good_id": 3103, "name": "护身革甲", "lvLimited": 47, "quality": 3, @@ -2268,7 +3996,7 @@ "info": "&" }, { - "good_id": 3009, + "good_id": 3104, "name": "护心胸甲", "lvLimited": 67, "quality": 4, @@ -2304,7 +4032,7 @@ "info": "&" }, { - "good_id": 3010, + "good_id": 3105, "name": "金缕玉甲", "lvLimited": 87, "quality": 5, @@ -2340,7 +4068,151 @@ "info": "&" }, { - "good_id": 3011, + "good_id": 3106, + "name": "普通玉甲", + "lvLimited": 7, + "quality": 5, + "image_id": 1, + "itid": 13, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50013&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 368, + "atk": 300, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3107, + "name": "高级玉甲", + "lvLimited": 27, + "quality": 5, + "image_id": 1, + "itid": 13, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50013&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 368, + "atk": 300, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3108, + "name": "牛逼玉甲", + "lvLimited": 47, + "quality": 5, + "image_id": 1, + "itid": 13, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50013&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 368, + "atk": 300, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3109, + "name": "厉害玉甲", + "lvLimited": 67, + "quality": 5, + "image_id": 1, + "itid": 13, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50013&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 368, + "atk": 300, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 17, + "atk_up": 15, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3201, "name": "粗布棉袍", "lvLimited": 7, "quality": 1, @@ -2376,7 +4248,7 @@ "info": "&" }, { - "good_id": 3012, + "good_id": 3202, "name": "细布儒袍", "lvLimited": 27, "quality": 2, @@ -2412,7 +4284,7 @@ "info": "&" }, { - "good_id": 3013, + "good_id": 3203, "name": "真丝锦袍", "lvLimited": 47, "quality": 3, @@ -2448,7 +4320,7 @@ "info": "&" }, { - "good_id": 3014, + "good_id": 3204, "name": "金线法袍", "lvLimited": 67, "quality": 4, @@ -2484,7 +4356,7 @@ "info": "&" }, { - "good_id": 3015, + "good_id": 3205, "name": "无极法袍", "lvLimited": 87, "quality": 5, @@ -2519,6 +4391,150 @@ "value": 0, "info": "&" }, + { + "good_id": 3206, + "name": "普通法袍", + "lvLimited": 7, + "quality": 5, + "image_id": 1, + "itid": 14, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50014&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 15, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3207, + "name": "高级法袍", + "lvLimited": 27, + "quality": 5, + "image_id": 1, + "itid": 14, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50014&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 15, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3208, + "name": "牛逼法袍", + "lvLimited": 47, + "quality": 5, + "image_id": 1, + "itid": 14, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50014&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 15, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 3209, + "name": "厉害法袍", + "lvLimited": 67, + "quality": 5, + "image_id": 1, + "itid": 14, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50014&1|17048&500", + "specialMaterial": "3004&3009&3014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 15, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 4001, "name": "六韬", @@ -2701,6 +4717,150 @@ }, { "good_id": 4006, + "name": "普通防御书", + "lvLimited": 10, + "quality": 5, + "image_id": 1, + "itid": 15, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50015&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 0, + "matk": 314, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4007, + "name": "高级防御书", + "lvLimited": 30, + "quality": 5, + "image_id": 1, + "itid": 15, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50015&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 0, + "matk": 314, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4008, + "name": "牛逼防御书", + "lvLimited": 50, + "quality": 5, + "image_id": 1, + "itid": 15, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50015&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 0, + "matk": 314, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4009, + "name": "厉害防御书", + "lvLimited": 70, + "quality": 5, + "image_id": 1, + "itid": 15, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50015&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 276, + "atk": 0, + "matk": 314, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 13, + "atk_up": 0, + "matk_up": 15, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4101, "name": "战国策", "lvLimited": 10, "quality": 1, @@ -2736,7 +4896,7 @@ "info": "&" }, { - "good_id": 4007, + "good_id": 4102, "name": "伤寒杂病论", "lvLimited": 30, "quality": 2, @@ -2772,7 +4932,7 @@ "info": "&" }, { - "good_id": 4008, + "good_id": 4103, "name": "天人三策", "lvLimited": 50, "quality": 3, @@ -2808,7 +4968,7 @@ "info": "&" }, { - "good_id": 4009, + "good_id": 4104, "name": "淮南子书", "lvLimited": 70, "quality": 4, @@ -2844,7 +5004,7 @@ "info": "&" }, { - "good_id": 4010, + "good_id": 4105, "name": "黄帝内经", "lvLimited": 90, "quality": 5, @@ -2880,7 +5040,151 @@ "info": "&" }, { - "good_id": 4011, + "good_id": 4106, + "name": "普通攻击书", + "lvLimited": 10, + "quality": 5, + "image_id": 1, + "itid": 16, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50016&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 0, + "matk": 14, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4107, + "name": "高级攻击书", + "lvLimited": 30, + "quality": 5, + "image_id": 1, + "itid": 16, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50016&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 0, + "matk": 14, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4108, + "name": "牛逼攻击书", + "lvLimited": 50, + "quality": 5, + "image_id": 1, + "itid": 16, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50016&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 0, + "matk": 14, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4109, + "name": "厉害攻击书", + "lvLimited": 70, + "quality": 5, + "image_id": 1, + "itid": 16, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50016&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 14, + "atk": 0, + "matk": 14, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4201, "name": "九章算术", "lvLimited": 10, "quality": 1, @@ -2916,7 +5220,7 @@ "info": "&" }, { - "good_id": 4012, + "good_id": 4202, "name": "吕氏春秋", "lvLimited": 30, "quality": 2, @@ -2952,7 +5256,7 @@ "info": "&" }, { - "good_id": 4013, + "good_id": 4203, "name": "史记", "lvLimited": 50, "quality": 3, @@ -2988,7 +5292,7 @@ "info": "&" }, { - "good_id": 4014, + "good_id": 4204, "name": "资治通鉴", "lvLimited": 70, "quality": 4, @@ -3024,7 +5328,7 @@ "info": "&" }, { - "good_id": 4015, + "good_id": 4205, "name": "汉书", "lvLimited": 90, "quality": 5, @@ -3059,6 +5363,150 @@ "value": 0, "info": "&" }, + { + "good_id": 4206, + "name": "普通功能书", + "lvLimited": 10, + "quality": 5, + "image_id": 1, + "itid": 17, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50017&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 0, + "matk": 287, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4207, + "name": "高级功能书", + "lvLimited": 30, + "quality": 5, + "image_id": 1, + "itid": 17, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50017&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 0, + "matk": 287, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4208, + "name": "牛逼功能书", + "lvLimited": 50, + "quality": 5, + "image_id": 1, + "itid": 17, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50017&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 0, + "matk": 287, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 4209, + "name": "厉害功能书", + "lvLimited": 70, + "quality": 5, + "image_id": 1, + "itid": 17, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50017&1|17052&500", + "specialMaterial": "4004&4009&4014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 294, + "atk": 0, + "matk": 287, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 14, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 5001, "name": "花鬃马", @@ -3241,6 +5689,150 @@ }, { "good_id": 5006, + "name": "普通马", + "lvLimited": 13, + "quality": 5, + "image_id": 1, + "itid": 18, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50018&1|17050&500", + "specialMaterial": "5004|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 13, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5007, + "name": "高级马", + "lvLimited": 33, + "quality": 5, + "image_id": 1, + "itid": 18, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50018&1|17050&500", + "specialMaterial": "5004|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 13, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5008, + "name": "牛逼马", + "lvLimited": 53, + "quality": 5, + "image_id": 1, + "itid": 18, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50018&1|17050&500", + "specialMaterial": "5004|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 13, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5009, + "name": "厉害马", + "lvLimited": 73, + "quality": 5, + "image_id": 1, + "itid": 18, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50018&1|17050&500", + "specialMaterial": "5004|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 13, + "atk": 0, + "matk": 13, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5101, "name": "硬布战靴", "lvLimited": 13, "quality": 1, @@ -3276,7 +5868,7 @@ "info": "&" }, { - "good_id": 5007, + "good_id": 5102, "name": "软布战靴", "lvLimited": 33, "quality": 2, @@ -3312,7 +5904,7 @@ "info": "&" }, { - "good_id": 5008, + "good_id": 5103, "name": "硬革战靴", "lvLimited": 53, "quality": 3, @@ -3348,7 +5940,7 @@ "info": "&" }, { - "good_id": 5009, + "good_id": 5104, "name": "银铁战靴", "lvLimited": 73, "quality": 4, @@ -3384,7 +5976,7 @@ "info": "&" }, { - "good_id": 5010, + "good_id": 5105, "name": "金缕战靴", "lvLimited": 93, "quality": 5, @@ -3420,7 +6012,151 @@ "info": "&" }, { - "good_id": 5011, + "good_id": 5106, + "name": "普通战靴", + "lvLimited": 13, + "quality": 5, + "image_id": 1, + "itid": 19, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50019&1|17050&500", + "specialMaterial": "5009|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 265, + "atk": 0, + "matk": 273, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5107, + "name": "高级战靴", + "lvLimited": 33, + "quality": 5, + "image_id": 1, + "itid": 19, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50019&1|17050&500", + "specialMaterial": "5009|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 265, + "atk": 0, + "matk": 273, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5108, + "name": "牛逼战靴", + "lvLimited": 53, + "quality": 5, + "image_id": 1, + "itid": 19, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50019&1|17050&500", + "specialMaterial": "5009|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 265, + "atk": 0, + "matk": 273, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5109, + "name": "厉害战靴", + "lvLimited": 73, + "quality": 5, + "image_id": 1, + "itid": 19, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50019&1|17050&500", + "specialMaterial": "5009|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 265, + "atk": 0, + "matk": 273, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 12, + "atk_up": 0, + "matk_up": 13, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5201, "name": "粗麻草鞋", "lvLimited": 13, "quality": 1, @@ -3456,7 +6192,7 @@ "info": "&" }, { - "good_id": 5012, + "good_id": 5202, "name": "细布棉鞋", "lvLimited": 33, "quality": 2, @@ -3492,7 +6228,7 @@ "info": "&" }, { - "good_id": 5013, + "good_id": 5203, "name": "真丝棉鞋", "lvLimited": 53, "quality": 3, @@ -3528,7 +6264,7 @@ "info": "&" }, { - "good_id": 5014, + "good_id": 5204, "name": "金线玉靴", "lvLimited": 73, "quality": 4, @@ -3564,7 +6300,7 @@ "info": "&" }, { - "good_id": 5015, + "good_id": 5205, "name": "无极玉履", "lvLimited": 93, "quality": 5, @@ -3599,6 +6335,150 @@ "value": 0, "info": "&" }, + { + "good_id": 5206, + "name": "普通玉履", + "lvLimited": 13, + "quality": 5, + "image_id": 1, + "itid": 20, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50020&1|17050&500", + "specialMaterial": "5014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 29, + "atk": 0, + "matk": 0, + "def": 3, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5207, + "name": "高级玉履", + "lvLimited": 33, + "quality": 5, + "image_id": 1, + "itid": 20, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50020&1|17050&500", + "specialMaterial": "5014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 29, + "atk": 0, + "matk": 0, + "def": 3, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5208, + "name": "牛逼玉履", + "lvLimited": 53, + "quality": 5, + "image_id": 1, + "itid": 20, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50020&1|17050&500", + "specialMaterial": "5014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 29, + "atk": 0, + "matk": 0, + "def": 3, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 5209, + "name": "厉害玉履", + "lvLimited": 73, + "quality": 5, + "image_id": 1, + "itid": 20, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50020&1|17050&500", + "specialMaterial": "5014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 29, + "atk": 0, + "matk": 0, + "def": 3, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 29, + "atk_up": 0, + "matk_up": 0, + "def_up": 3, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 6001, "name": "和田玉佩", @@ -3779,8 +6659,188 @@ "value": 0, "info": "&" }, + { + "good_id": 6020, + "name": "豪华戒指", + "lvLimited": 100, + "quality": 5, + "image_id": 1, + "itid": 21, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50021&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 6006, + "name": "普通戒指", + "lvLimited": 16, + "quality": 5, + "image_id": 1, + "itid": 21, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50021&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6007, + "name": "高级戒指", + "lvLimited": 36, + "quality": 5, + "image_id": 1, + "itid": 21, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50021&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6008, + "name": "牛逼戒指", + "lvLimited": 56, + "quality": 5, + "image_id": 1, + "itid": 21, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50021&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6009, + "name": "厉害戒指", + "lvLimited": 76, + "quality": 5, + "image_id": 1, + "itid": 21, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50021&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 1, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6101, "name": "四羊方尊", "lvLimited": 16, "quality": 1, @@ -3816,7 +6876,7 @@ "info": "&" }, { - "good_id": 6007, + "good_id": 6102, "name": "青铜鼎", "lvLimited": 36, "quality": 2, @@ -3852,7 +6912,7 @@ "info": "&" }, { - "good_id": 6008, + "good_id": 6103, "name": "曾侯乙编钟", "lvLimited": 56, "quality": 3, @@ -3888,7 +6948,7 @@ "info": "&" }, { - "good_id": 6009, + "good_id": 6104, "name": "方钟", "lvLimited": 76, "quality": 4, @@ -3924,7 +6984,7 @@ "info": "&" }, { - "good_id": 6010, + "good_id": 6105, "name": "震天钟", "lvLimited": 96, "quality": 5, @@ -3960,7 +7020,151 @@ "info": "&" }, { - "good_id": 6011, + "good_id": 6106, + "name": "普通钟", + "lvLimited": 16, + "quality": 5, + "image_id": 1, + "itid": 22, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50022&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6107, + "name": "高级钟", + "lvLimited": 36, + "quality": 5, + "image_id": 1, + "itid": 22, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50022&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6108, + "name": "牛逼钟", + "lvLimited": 56, + "quality": 5, + "image_id": 1, + "itid": 22, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50022&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6109, + "name": "厉害钟", + "lvLimited": 76, + "quality": 5, + "image_id": 1, + "itid": 22, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50022&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6201, "name": "将军印", "lvLimited": 16, "quality": 1, @@ -3996,7 +7200,7 @@ "info": "&" }, { - "good_id": 6012, + "good_id": 6202, "name": "青玉玺", "lvLimited": 36, "quality": 2, @@ -4032,7 +7236,7 @@ "info": "&" }, { - "good_id": 6013, + "good_id": 6203, "name": "和氏璧", "lvLimited": 56, "quality": 3, @@ -4068,7 +7272,7 @@ "info": "&" }, { - "good_id": 6014, + "good_id": 6204, "name": "螭虎玺", "lvLimited": 76, "quality": 4, @@ -4104,7 +7308,7 @@ "info": "&" }, { - "good_id": 6015, + "good_id": 6205, "name": "汉寿亭侯印", "lvLimited": 96, "quality": 5, @@ -4139,6 +7343,150 @@ "value": 0, "info": "&" }, + { + "good_id": 6206, + "name": "普通印", + "lvLimited": 16, + "quality": 5, + "image_id": 1, + "itid": 23, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50023&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6207, + "name": "高级印", + "lvLimited": 36, + "quality": 5, + "image_id": 1, + "itid": 23, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50023&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6208, + "name": "牛逼印", + "lvLimited": 56, + "quality": 5, + "image_id": 1, + "itid": 23, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50023&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 6209, + "name": "厉害印", + "lvLimited": 76, + "quality": 5, + "image_id": 1, + "itid": 23, + "goodType": 2, + "pieces": 10, + "pieceId": 0, + "composeMaterial": "50023&1|17051&500", + "specialMaterial": "6004&6009&6014|1", + "decomposeItem": "&", + "hole": 2, + "randomEffect": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", + "hid": 0, + "hp": 25, + "atk": 0, + "matk": 0, + "def": 2, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 24, + "atk_up": 0, + "matk_up": 0, + "def_up": 2, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 11001, "name": "初级武将经验书", @@ -18143,6 +21491,2022 @@ "value": 0, "info": "&" }, + { + "good_id": 41058, + "name": "漂亮衣服58", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41059, + "name": "漂亮衣服59", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41060, + "name": "漂亮衣服60", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41061, + "name": "漂亮衣服61", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41062, + "name": "漂亮衣服62", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41063, + "name": "漂亮衣服63", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41064, + "name": "漂亮衣服64", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41065, + "name": "漂亮衣服65", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41066, + "name": "漂亮衣服66", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41067, + "name": "漂亮衣服67", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41068, + "name": "漂亮衣服68", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41069, + "name": "漂亮衣服69", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41070, + "name": "漂亮衣服70", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41071, + "name": "漂亮衣服71", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41072, + "name": "漂亮衣服72", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41073, + "name": "漂亮衣服73", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41074, + "name": "漂亮衣服74", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41075, + "name": "漂亮衣服75", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41076, + "name": "漂亮衣服76", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41077, + "name": "漂亮衣服77", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41078, + "name": "漂亮衣服78", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41079, + "name": "漂亮衣服79", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41080, + "name": "漂亮衣服80", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41081, + "name": "漂亮衣服81", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41082, + "name": "漂亮衣服82", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41083, + "name": "漂亮衣服83", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41084, + "name": "漂亮衣服84", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41085, + "name": "漂亮衣服85", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41086, + "name": "漂亮衣服86", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41087, + "name": "漂亮衣服87", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41088, + "name": "漂亮衣服88", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41089, + "name": "漂亮衣服89", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41090, + "name": "漂亮衣服90", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41091, + "name": "漂亮衣服91", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41092, + "name": "漂亮衣服92", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41093, + "name": "漂亮衣服93", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41094, + "name": "漂亮衣服94", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41095, + "name": "漂亮衣服95", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41096, + "name": "漂亮衣服96", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41097, + "name": "漂亮衣服97", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41098, + "name": "漂亮衣服98", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41099, + "name": "漂亮衣服99", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41100, + "name": "漂亮衣服100", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41101, + "name": "漂亮衣服101", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41102, + "name": "漂亮衣服102", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41103, + "name": "漂亮衣服103", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41104, + "name": "漂亮衣服104", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41105, + "name": "漂亮衣服105", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41106, + "name": "漂亮衣服106", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41107, + "name": "漂亮衣服107", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41108, + "name": "漂亮衣服108", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41109, + "name": "漂亮衣服109", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41110, + "name": "漂亮衣服110", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41111, + "name": "漂亮衣服111", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41112, + "name": "漂亮衣服112", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, + { + "good_id": 41113, + "name": "漂亮衣服113", + "lvLimited": 1, + "quality": 5, + "image_id": 1, + "itid": 39, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "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": 0, + "getWays": "1&0", + "value": 0, + "info": "&" + }, { "good_id": 42001, "name": "铁剑碎片", @@ -23338,7 +28702,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60006&3", - "specialMaterial": "60060&1", + "specialMaterial": "60060|1", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -23374,7 +28738,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60007&3", - "specialMaterial": "60060&3", + "specialMaterial": "60060|3", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -23410,7 +28774,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60008&3", - "specialMaterial": "60060&9", + "specialMaterial": "60060|9", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -23662,7 +29026,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60016&3", - "specialMaterial": "60060&1", + "specialMaterial": "60060|1", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -23698,7 +29062,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60017&3", - "specialMaterial": "60060&3", + "specialMaterial": "60060|3", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -23734,7 +29098,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60018&3", - "specialMaterial": "60060&9", + "specialMaterial": "60060|9", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -23986,7 +29350,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60026&3", - "specialMaterial": "60060&1", + "specialMaterial": "60060|1", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24022,7 +29386,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60027&3", - "specialMaterial": "60060&3", + "specialMaterial": "60060|3", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24058,7 +29422,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60028&3", - "specialMaterial": "60060&9", + "specialMaterial": "60060|9", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24310,7 +29674,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60036&3", - "specialMaterial": "60060&1", + "specialMaterial": "60060|1", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24346,7 +29710,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60037&3", - "specialMaterial": "60060&3", + "specialMaterial": "60060|3", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24382,7 +29746,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60038&3", - "specialMaterial": "60060&9", + "specialMaterial": "60060|9", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24634,7 +29998,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60046&3", - "specialMaterial": "60060&1", + "specialMaterial": "60060|1", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24670,7 +30034,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60047&3", - "specialMaterial": "60060&3", + "specialMaterial": "60060|3", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24706,7 +30070,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60048&3", - "specialMaterial": "60060&9", + "specialMaterial": "60060|9", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24958,7 +30322,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60056&3", - "specialMaterial": "60060&1", + "specialMaterial": "60060|1", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -24994,7 +30358,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60057&3", - "specialMaterial": "60060&3", + "specialMaterial": "60060|3", "decomposeItem": "&", "hole": 0, "randomEffect": "&", @@ -25030,7 +30394,7 @@ "pieces": 0, "pieceId": 0, "composeMaterial": "60058&3", - "specialMaterial": "60060&9", + "specialMaterial": "60060|9", "decomposeItem": "&", "hole": 0, "randomEffect": "&", diff --git a/shared/resource/jsons/dic_zyz_fashions.json b/shared/resource/jsons/dic_zyz_fashions.json index f391492f6..554e6bb1c 100644 --- a/shared/resource/jsons/dic_zyz_fashions.json +++ b/shared/resource/jsons/dic_zyz_fashions.json @@ -2,21 +2,32 @@ { "id": 41001, "name": "漂亮衣服1", - "rSpine": "LH_jiaxu", + "rSpine": "&", "sSpine": "caocao", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", - "globalAttr": "1&2000|2&500", - "actorAttr": "3&200|4&100", + "faceId": "caocao", + "skillId": 1, + "globalAttr": "&", + "actorAttr": "&", "actorId": 1 }, { "id": 41002, "name": "漂亮衣服2", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "caocao", + "faceId": "caocao", + "skillId": 301, + "globalAttr": "1&2000|2&500", + "actorAttr": "3&200|4&100", + "actorId": 1 + }, + { + "id": 41058, + "name": "漂亮衣服58", + "rSpine": "&", + "sSpine": "caocao", + "faceId": "caocao", + "skillId": 359, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 1 @@ -24,10 +35,21 @@ { "id": 41003, "name": "漂亮衣服3", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "xiahoudun", + "faceId": "xiahoudun", + "skillId": 2, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 2 + }, + { + "id": 41059, + "name": "漂亮衣服59", + "rSpine": "&", + "sSpine": "xiahoudun", + "faceId": "xiahoudun", + "skillId": 302, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 2 @@ -35,10 +57,21 @@ { "id": 41004, "name": "漂亮衣服4", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zhangliao", + "faceId": "zhangliao", + "skillId": 3, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 3 + }, + { + "id": 41060, + "name": "漂亮衣服60", + "rSpine": "&", + "sSpine": "zhangliao", + "faceId": "zhangliao", + "skillId": 303, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 3 @@ -46,10 +79,21 @@ { "id": 41005, "name": "漂亮衣服5", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "xiahouyuan", + "faceId": "xiahouyuan", + "skillId": 4, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 4 + }, + { + "id": 41061, + "name": "漂亮衣服61", + "rSpine": "&", + "sSpine": "xiahouyuan", + "faceId": "xiahouyuan", + "skillId": 304, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 4 @@ -57,10 +101,21 @@ { "id": 41006, "name": "漂亮衣服6", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "guojia", + "faceId": "guojia", + "skillId": 5, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 5 + }, + { + "id": 41062, + "name": "漂亮衣服62", + "rSpine": "&", + "sSpine": "guojia", + "faceId": "guojia", + "skillId": 305, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 5 @@ -68,10 +123,21 @@ { "id": 41007, "name": "漂亮衣服7", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "simayi", + "faceId": "simayi", + "skillId": 6, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 6 + }, + { + "id": 41063, + "name": "漂亮衣服63", + "rSpine": "&", + "sSpine": "simayi", + "faceId": "simayi", + "skillId": 306, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 6 @@ -79,10 +145,21 @@ { "id": 41008, "name": "漂亮衣服8", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "dianwei", + "faceId": "dianwei", + "skillId": 7, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 7 + }, + { + "id": 41064, + "name": "漂亮衣服64", + "rSpine": "&", + "sSpine": "dianwei", + "faceId": "dianwei", + "skillId": 307, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 7 @@ -90,10 +167,21 @@ { "id": 41009, "name": "漂亮衣服9", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "pangde", + "faceId": "pangde", + "skillId": 8, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 8 + }, + { + "id": 41065, + "name": "漂亮衣服65", + "rSpine": "&", + "sSpine": "pangde", + "faceId": "pangde", + "skillId": 308, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 8 @@ -101,10 +189,21 @@ { "id": 41010, "name": "漂亮衣服10", - "rSpine": "LH_jiaxu", + "rSpine": "&", "sSpine": "dengai", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "faceId": "dengai", + "skillId": 9, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 9 + }, + { + "id": 41066, + "name": "漂亮衣服66", + "rSpine": "&", + "sSpine": "dengai", + "faceId": "dengai", + "skillId": 309, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 9 @@ -112,10 +211,21 @@ { "id": 41011, "name": "漂亮衣服11", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "xuhuang", + "faceId": "xuhuang", + "skillId": 10, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 10 + }, + { + "id": 41067, + "name": "漂亮衣服67", + "rSpine": "&", + "sSpine": "xuhuang", + "faceId": "xuhuang", + "skillId": 310, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 10 @@ -123,10 +233,21 @@ { "id": 41012, "name": "漂亮衣服12", - "rSpine": "LH_xuchu", + "rSpine": "&", "sSpine": "caoren", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "faceId": "caoren", + "skillId": 11, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 11 + }, + { + "id": 41068, + "name": "漂亮衣服68", + "rSpine": "&", + "sSpine": "caoren", + "faceId": "caoren", + "skillId": 311, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 11 @@ -134,10 +255,21 @@ { "id": 41013, "name": "漂亮衣服13", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "LH_lidian", + "sSpine": "lidian", + "faceId": "lidian", + "skillId": 12, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 12 + }, + { + "id": 41069, + "name": "漂亮衣服69", + "rSpine": "LH_lidian", + "sSpine": "lidian", + "faceId": "lidian", + "skillId": 312, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 12 @@ -145,10 +277,21 @@ { "id": 41014, "name": "漂亮衣服14", - "rSpine": "LH_jiaxu", + "rSpine": "&", "sSpine": "caiyan", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "faceId": "caiyan", + "skillId": 13, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 13 + }, + { + "id": 41070, + "name": "漂亮衣服70", + "rSpine": "&", + "sSpine": "caiyan", + "faceId": "caiyan", + "skillId": 313, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 13 @@ -158,8 +301,19 @@ "name": "漂亮衣服15", "rSpine": "LH_jiaxu", "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "faceId": "jiaxu", + "skillId": 14, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 14 + }, + { + "id": 41071, + "name": "漂亮衣服71", + "rSpine": "LH_jiaxu", + "sSpine": "jiaxu", + "faceId": "jiaxu", + "skillId": 314, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 14 @@ -167,10 +321,21 @@ { "id": 41016, "name": "漂亮衣服16", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "LH_xuchu", + "sSpine": "xuchu", + "faceId": "xuchu", + "skillId": 15, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 15 + }, + { + "id": 41072, + "name": "漂亮衣服72", + "rSpine": "LH_xuchu", + "sSpine": "xuchu", + "faceId": "xuchu", + "skillId": 315, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 15 @@ -178,10 +343,21 @@ { "id": 41017, "name": "漂亮衣服17", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "yuejin", + "faceId": "yuejin", + "skillId": 16, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 16 + }, + { + "id": 41073, + "name": "漂亮衣服73", + "rSpine": "&", + "sSpine": "yuejin", + "faceId": "yuejin", + "skillId": 316, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 16 @@ -189,10 +365,21 @@ { "id": 41018, "name": "漂亮衣服18", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zhangfei", + "faceId": "zhangfei", + "skillId": 17, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 17 + }, + { + "id": 41074, + "name": "漂亮衣服74", + "rSpine": "&", + "sSpine": "zhangfei", + "faceId": "zhangfei", + "skillId": 317, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 17 @@ -200,10 +387,21 @@ { "id": 41019, "name": "漂亮衣服19", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "guanyu", + "faceId": "guanyu", + "skillId": 18, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 18 + }, + { + "id": 41075, + "name": "漂亮衣服75", + "rSpine": "&", + "sSpine": "guanyu", + "faceId": "guanyu", + "skillId": 318, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 18 @@ -211,10 +409,21 @@ { "id": 41020, "name": "漂亮衣服20", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "LH_zhaoyun", + "sSpine": "zhaoyun", + "faceId": "zhaoyun", + "skillId": 19, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 19 + }, + { + "id": 41076, + "name": "漂亮衣服76", + "rSpine": "LH_zhaoyun", + "sSpine": "zhaoyun", + "faceId": "zhaoyun", + "skillId": 319, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 19 @@ -222,10 +431,21 @@ { "id": 41021, "name": "漂亮衣服21", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "liubei", + "faceId": "liubei", + "skillId": 20, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 20 + }, + { + "id": 41077, + "name": "漂亮衣服77", + "rSpine": "&", + "sSpine": "liubei", + "faceId": "liubei", + "skillId": 320, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 20 @@ -233,10 +453,21 @@ { "id": 41022, "name": "漂亮衣服22", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "huangzhong", + "faceId": "huangzhong", + "skillId": 21, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 21 + }, + { + "id": 41078, + "name": "漂亮衣服78", + "rSpine": "&", + "sSpine": "huangzhong", + "faceId": "huangzhong", + "skillId": 321, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 21 @@ -244,10 +475,21 @@ { "id": 41023, "name": "漂亮衣服23", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zhugeliang", + "faceId": "zhugeliang", + "skillId": 22, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 22 + }, + { + "id": 41079, + "name": "漂亮衣服79", + "rSpine": "&", + "sSpine": "zhugeliang", + "faceId": "zhugeliang", + "skillId": 322, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 22 @@ -255,10 +497,21 @@ { "id": 41024, "name": "漂亮衣服24", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "pangtong", + "faceId": "pangtong", + "skillId": 23, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 23 + }, + { + "id": 41080, + "name": "漂亮衣服80", + "rSpine": "&", + "sSpine": "pangtong", + "faceId": "pangtong", + "skillId": 323, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 23 @@ -266,10 +519,21 @@ { "id": 41025, "name": "漂亮衣服25", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "weiyan", + "faceId": "weiyan", + "skillId": 24, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 24 + }, + { + "id": 41081, + "name": "漂亮衣服81", + "rSpine": "&", + "sSpine": "weiyan", + "faceId": "weiyan", + "skillId": 324, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 24 @@ -277,10 +541,21 @@ { "id": 41026, "name": "漂亮衣服26", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "chendao", + "faceId": "chendao", + "skillId": 25, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 25 + }, + { + "id": 41082, + "name": "漂亮衣服82", + "rSpine": "&", + "sSpine": "chendao", + "faceId": "chendao", + "skillId": 325, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 25 @@ -288,10 +563,21 @@ { "id": 41027, "name": "漂亮衣服27", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "guanyinping", + "faceId": "guanyinping", + "skillId": 26, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 26 + }, + { + "id": 41083, + "name": "漂亮衣服83", + "rSpine": "&", + "sSpine": "guanyinping", + "faceId": "guanyinping", + "skillId": 326, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 26 @@ -299,10 +585,21 @@ { "id": 41028, "name": "漂亮衣服28", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "mayunlu", + "faceId": "mayunlu", + "skillId": 27, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 27 + }, + { + "id": 41084, + "name": "漂亮衣服84", + "rSpine": "&", + "sSpine": "mayunlu", + "faceId": "mayunlu", + "skillId": 327, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 27 @@ -310,10 +607,21 @@ { "id": 41029, "name": "漂亮衣服29", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "maliang", + "faceId": "maliang", + "skillId": 28, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 28 + }, + { + "id": 41085, + "name": "漂亮衣服85", + "rSpine": "&", + "sSpine": "maliang", + "faceId": "maliang", + "skillId": 328, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 28 @@ -321,10 +629,21 @@ { "id": 41030, "name": "漂亮衣服30", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "huangyueying", + "faceId": "huangyueying", + "skillId": 29, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 29 + }, + { + "id": 41086, + "name": "漂亮衣服86", + "rSpine": "&", + "sSpine": "huangyueying", + "faceId": "huangyueying", + "skillId": 329, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 29 @@ -332,10 +651,21 @@ { "id": 41031, "name": "漂亮衣服31", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "wangping", + "faceId": "wangping", + "skillId": 30, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 30 + }, + { + "id": 41087, + "name": "漂亮衣服87", + "rSpine": "&", + "sSpine": "wangping", + "faceId": "wangping", + "skillId": 330, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 30 @@ -343,10 +673,21 @@ { "id": 41032, "name": "漂亮衣服32", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "sunqian", + "faceId": "sunqian", + "skillId": 31, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 31 + }, + { + "id": 41088, + "name": "漂亮衣服88", + "rSpine": "&", + "sSpine": "sunqian", + "faceId": "sunqian", + "skillId": 331, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 31 @@ -354,10 +695,21 @@ { "id": 41033, "name": "漂亮衣服33", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zhoutai", + "faceId": "zhoutai", + "skillId": 32, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 32 + }, + { + "id": 41089, + "name": "漂亮衣服89", + "rSpine": "&", + "sSpine": "zhoutai", + "faceId": "zhoutai", + "skillId": 332, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 32 @@ -365,10 +717,21 @@ { "id": 41034, "name": "漂亮衣服34", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "sunce", + "faceId": "sunce", + "skillId": 33, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 33 + }, + { + "id": 41090, + "name": "漂亮衣服90", + "rSpine": "&", + "sSpine": "sunce", + "faceId": "sunce", + "skillId": 333, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 33 @@ -376,10 +739,21 @@ { "id": 41035, "name": "漂亮衣服35", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zhouyu", + "faceId": "zhouyu", + "skillId": 34, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 34 + }, + { + "id": 41091, + "name": "漂亮衣服91", + "rSpine": "&", + "sSpine": "zhouyu", + "faceId": "zhouyu", + "skillId": 334, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 34 @@ -387,10 +761,21 @@ { "id": 41036, "name": "漂亮衣服36", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "taishici", + "faceId": "taishici", + "skillId": 35, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 35 + }, + { + "id": 41092, + "name": "漂亮衣服92", + "rSpine": "&", + "sSpine": "taishici", + "faceId": "taishici", + "skillId": 335, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 35 @@ -398,10 +783,21 @@ { "id": 41037, "name": "漂亮衣服37", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "sunquan", + "faceId": "sunquan", + "skillId": 36, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 36 + }, + { + "id": 41093, + "name": "漂亮衣服93", + "rSpine": "&", + "sSpine": "sunquan", + "faceId": "sunquan", + "skillId": 336, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 36 @@ -409,10 +805,21 @@ { "id": 41038, "name": "漂亮衣服38", - "rSpine": "LH_xuchu", + "rSpine": "&", "sSpine": "ganning", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "faceId": "ganning", + "skillId": 37, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 37 + }, + { + "id": 41094, + "name": "漂亮衣服94", + "rSpine": "&", + "sSpine": "ganning", + "faceId": "ganning", + "skillId": 337, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 37 @@ -420,10 +827,21 @@ { "id": 41039, "name": "漂亮衣服39", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "sunshangxiang", + "faceId": "sunshangxiang", + "skillId": 38, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 38 + }, + { + "id": 41095, + "name": "漂亮衣服95", + "rSpine": "&", + "sSpine": "sunshangxiang", + "faceId": "sunshangxiang", + "skillId": 338, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 38 @@ -431,10 +849,21 @@ { "id": 41040, "name": "漂亮衣服40", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "luxun", + "faceId": "luxun", + "skillId": 39, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 39 + }, + { + "id": 41096, + "name": "漂亮衣服96", + "rSpine": "&", + "sSpine": "luxun", + "faceId": "luxun", + "skillId": 339, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 39 @@ -442,10 +871,21 @@ { "id": 41041, "name": "漂亮衣服41", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "xiaoqiao", + "faceId": "xiaoqiao", + "skillId": 40, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 40 + }, + { + "id": 41097, + "name": "漂亮衣服97", + "rSpine": "&", + "sSpine": "xiaoqiao", + "faceId": "xiaoqiao", + "skillId": 340, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 40 @@ -453,10 +893,21 @@ { "id": 41042, "name": "漂亮衣服42", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "daqiao", + "faceId": "daqiao", + "skillId": 41, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 41 + }, + { + "id": 41098, + "name": "漂亮衣服98", + "rSpine": "&", + "sSpine": "daqiao", + "faceId": "daqiao", + "skillId": 341, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 41 @@ -464,10 +915,21 @@ { "id": 41043, "name": "漂亮衣服43", - "rSpine": "LH_xuchu", + "rSpine": "&", "sSpine": "bulianshi", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "faceId": "bulianshi", + "skillId": 42, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 42 + }, + { + "id": 41099, + "name": "漂亮衣服99", + "rSpine": "&", + "sSpine": "bulianshi", + "faceId": "bulianshi", + "skillId": 342, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 42 @@ -475,10 +937,21 @@ { "id": 41044, "name": "漂亮衣服44", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zuoci", + "faceId": "zuoci", + "skillId": 43, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 43 + }, + { + "id": 41100, + "name": "漂亮衣服100", + "rSpine": "&", + "sSpine": "zuoci", + "faceId": "zuoci", + "skillId": 343, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 43 @@ -486,10 +959,21 @@ { "id": 41045, "name": "漂亮衣服45", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "lvbu", + "faceId": "lvbu", + "skillId": 44, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 44 + }, + { + "id": 41101, + "name": "漂亮衣服101", + "rSpine": "&", + "sSpine": "lvbu", + "faceId": "lvbu", + "skillId": 344, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 44 @@ -497,10 +981,21 @@ { "id": 41046, "name": "漂亮衣服46", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zhangren", + "faceId": "zhangren", + "skillId": 45, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 45 + }, + { + "id": 41102, + "name": "漂亮衣服102", + "rSpine": "&", + "sSpine": "zhangren", + "faceId": "zhangren", + "skillId": 345, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 45 @@ -508,10 +1003,21 @@ { "id": 41047, "name": "漂亮衣服47", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "huatuo", + "faceId": "huatuo", + "skillId": 46, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 46 + }, + { + "id": 41103, + "name": "漂亮衣服103", + "rSpine": "&", + "sSpine": "huatuo", + "faceId": "huatuo", + "skillId": 346, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 46 @@ -519,10 +1025,21 @@ { "id": 41048, "name": "漂亮衣服48", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "zhangjiao", + "faceId": "zhangjiao", + "skillId": 47, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 47 + }, + { + "id": 41104, + "name": "漂亮衣服104", + "rSpine": "&", + "sSpine": "zhangjiao", + "faceId": "zhangjiao", + "skillId": 347, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 47 @@ -530,10 +1047,21 @@ { "id": 41049, "name": "漂亮衣服49", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "nanhua", + "faceId": "nanhua", + "skillId": 48, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 48 + }, + { + "id": 41105, + "name": "漂亮衣服105", + "rSpine": "&", + "sSpine": "nanhua", + "faceId": "nanhua", + "skillId": 348, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 48 @@ -541,10 +1069,21 @@ { "id": 41050, "name": "漂亮衣服50", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "gaoshun", + "faceId": "gaoshun", + "skillId": 49, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 49 + }, + { + "id": 41106, + "name": "漂亮衣服106", + "rSpine": "&", + "sSpine": "gaoshun", + "faceId": "gaoshun", + "skillId": 349, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 49 @@ -552,10 +1091,21 @@ { "id": 41051, "name": "漂亮衣服51", - "rSpine": "LH_lidian", - "sSpine": "lidian", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "quji", + "faceId": "quyi", + "skillId": 50, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 50 + }, + { + "id": 41107, + "name": "漂亮衣服107", + "rSpine": "&", + "sSpine": "quji", + "faceId": "quyi", + "skillId": 350, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 50 @@ -563,10 +1113,21 @@ { "id": 41052, "name": "漂亮衣服52", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "liru", + "faceId": "liru", + "skillId": 51, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 51 + }, + { + "id": 41108, + "name": "漂亮衣服108", + "rSpine": "&", + "sSpine": "liru", + "faceId": "liru", + "skillId": 351, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 51 @@ -574,10 +1135,21 @@ { "id": 41053, "name": "漂亮衣服53", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "pangwu", + "faceId": "pangwu", + "skillId": 52, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 52 + }, + { + "id": 41109, + "name": "漂亮衣服109", + "rSpine": "&", + "sSpine": "pangwu", + "faceId": "pangwu", + "skillId": 352, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 52 @@ -585,10 +1157,21 @@ { "id": 41054, "name": "漂亮衣服54", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "LH_xhqy", + "sSpine": "xiahouqingyi", + "faceId": "xiahouqingyi", + "skillId": 53, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 53 + }, + { + "id": 41110, + "name": "漂亮衣服110", + "rSpine": "LH_xhqy", + "sSpine": "xiahouqingyi", + "faceId": "xiahouqingyi", + "skillId": 353, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 53 @@ -596,10 +1179,21 @@ { "id": 41055, "name": "漂亮衣服55", - "rSpine": "LH_jiaxu", - "sSpine": "jiaxu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "wenchou", + "faceId": "wenchou", + "skillId": 54, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 54 + }, + { + "id": 41111, + "name": "漂亮衣服111", + "rSpine": "&", + "sSpine": "wenchou", + "faceId": "wenchou", + "skillId": 354, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 54 @@ -607,10 +1201,21 @@ { "id": 41056, "name": "漂亮衣服56", - "rSpine": "LH_xuchu", - "sSpine": "xuchu", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "yanliang", + "faceId": "yanliang", + "skillId": 55, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 55 + }, + { + "id": 41112, + "name": "漂亮衣服112", + "rSpine": "&", + "sSpine": "yanliang", + "faceId": "yanliang", + "skillId": 355, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 55 @@ -618,10 +1223,21 @@ { "id": 41057, "name": "漂亮衣服57", - "rSpine": "LH_zhaoyun", - "sSpine": "zhaoyun", - "skill": "1&12|2&13", - "seid": "1001&1005&1025", + "rSpine": "&", + "sSpine": "diaochan", + "faceId": "diaochan", + "skillId": 56, + "globalAttr": "&", + "actorAttr": "&", + "actorId": 56 + }, + { + "id": 41113, + "name": "漂亮衣服113", + "rSpine": "&", + "sSpine": "diaochan", + "faceId": "diaochan", + "skillId": 356, "globalAttr": "1&2000|2&500", "actorAttr": "3&200|4&100", "actorId": 56 diff --git a/shared/resource/jsons/dic_zyz_heroskill.json b/shared/resource/jsons/dic_zyz_heroskill.json index baa822848..f8b9f4301 100644 --- a/shared/resource/jsons/dic_zyz_heroskill.json +++ b/shared/resource/jsons/dic_zyz_heroskill.json @@ -2,930 +2,938 @@ { "skillid": 1, "name": "曹操", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 2, "name": "夏侯惇", - "starSkill": "1&4|3&6", - "colorStarSkill": "2&20|4&22", - "starSeid": "2&1133|4&1137|5&1134|6&501", - "colorStarSeid": "1&1144|3&1135|5&1138|6&502" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 3, "name": "张辽", - "starSkill": "1&4|3&7", - "colorStarSkill": "2&20|4&23", - "starSeid": "2&1133|4&1137|5&1134|6&502", - "colorStarSeid": "1&1144|3&1135|5&1138|6&503" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 4, "name": "夏侯渊", - "starSkill": "1&4|3&8", - "colorStarSkill": "2&20|4&24", - "starSeid": "2&1133|4&1137|5&1134|6&503", - "colorStarSeid": "1&1144|3&1135|5&1138|6&504" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 5, "name": "郭嘉", - "starSkill": "1&4|3&9", - "colorStarSkill": "2&20|4&25", - "starSeid": "2&1133|4&1137|5&1134|6&504", - "colorStarSeid": "1&1144|3&1135|5&1138|6&505" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 6, "name": "司马懿", - "starSkill": "1&4|3&10", - "colorStarSkill": "2&20|4&26", - "starSeid": "2&1133|4&1137|5&1134|6&505", - "colorStarSeid": "1&1144|3&1135|5&1138|6&506" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 7, "name": "典韦", - "starSkill": "1&4|3&11", - "colorStarSkill": "2&20|4&27", - "starSeid": "2&1133|4&1137|5&1134|6&506", - "colorStarSeid": "1&1144|3&1135|5&1138|6&507" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 8, "name": "庞德", - "starSkill": "1&4|3&12", - "colorStarSkill": "2&20|4&28", - "starSeid": "2&1133|4&1137|5&1134|6&507", - "colorStarSeid": "1&1144|3&1135|5&1138|6&508" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 9, "name": "邓艾", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 10, "name": "徐晃", - "starSkill": "1&28|3&30", - "colorStarSkill": "2&26|4&27", - "starSeid": "2&1553|4&1557|5&1554|6&500", - "colorStarSeid": "1&1564|3&1555|5&1558|6&501" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 11, "name": "曹仁", - "starSkill": "1&14|3&15", - "colorStarSkill": "2&22|4&23", - "starSeid": "2&1265|4&1269|5&1266|6&500", - "colorStarSeid": "1&1276|3&1267|5&1270|6&501" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 12, "name": "李典", - "starSkill": "1&6|3&7", - "colorStarSkill": "2&24|4&25", - "starSeid": "2&1349|4&1353|5&1350|6&500", - "colorStarSeid": "1&1360|3&1351|5&1354|6&501" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 13, "name": "蔡琰", - "starSkill": "1&18|3&19", - "colorStarSkill": "2&26|4&27", - "starSeid": "2&1553|4&1557|5&1554|6&500", - "colorStarSeid": "1&1564|3&1555|5&1558|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 14, "name": "贾诩", - "starSkill": "1&8|3&9", - "colorStarSkill": "2&26|4&27", - "starSeid": "2&1553|4&1557|5&1554|6&500", - "colorStarSeid": "1&1564|3&1555|5&1558|6&501" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 15, "name": "许褚", - "starSkill": "1&10|3&11", - "colorStarSkill": "2&28|4&29", - "starSeid": "2&1625|4&1629|5&1626|6&500", - "colorStarSeid": "1&1636|3&1627|5&1630|6&501" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 16, "name": "乐进", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 17, "name": "张飞", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 18, "name": "关羽", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 19, "name": "赵云", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 20, "name": "刘备", - "starSkill": "1&28|3&30", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1276|3&1267|5&1270|6&501" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 21, "name": "黄忠", - "starSkill": "1&14|3&15", - "colorStarSkill": "2&22|4&23", - "starSeid": "2&1265|4&1269|5&1266|6&500", - "colorStarSeid": "1&1276|3&1267|5&1270|6&501" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 22, "name": "诸葛亮", - "starSkill": "1&6|3&7", - "colorStarSkill": "2&24|4&25", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1360|3&1351|5&1354|6&501" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 23, "name": "庞统", - "starSkill": "1&18|3&19", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1276|3&1267|5&1270|6&501" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 24, "name": "魏延", - "starSkill": "1&8|3&9", - "colorStarSkill": "2&26|4&27", - "starSeid": "2&1553|4&1557|5&1554|6&500", - "colorStarSeid": "1&1564|3&1555|5&1558|6&501" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 25, "name": "陈到", - "starSkill": "1&10|3&11", - "colorStarSkill": "2&28|4&29", - "starSeid": "2&1625|4&1629|5&1626|6&500", - "colorStarSeid": "1&1636|3&1627|5&1630|6&501" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 26, "name": "关银屏", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 27, "name": "马云禄", - "starSkill": "1&4|3&5", - "colorStarSkill": "2&20|4&21", - "starSeid": "2&1133|4&1137|5&1134|6&500", - "colorStarSeid": "1&1144|3&1135|5&1138|6&501" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 28, "name": "马良", - "starSkill": "1&4|3&6", - "colorStarSkill": "2&20|4&22", - "starSeid": "2&1133|4&1137|5&1134|6&501", - "colorStarSeid": "1&1144|3&1135|5&1138|6&502" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 29, "name": "黄月英", - "starSkill": "1&4|3&7", - "colorStarSkill": "2&20|4&23", - "starSeid": "2&1133|4&1137|5&1134|6&502", - "colorStarSeid": "1&1144|3&1135|5&1138|6&503" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 30, "name": "王平", - "starSkill": "1&4|3&8", - "colorStarSkill": "2&20|4&24", - "starSeid": "2&1133|4&1137|5&1134|6&503", - "colorStarSeid": "1&1144|3&1135|5&1138|6&504" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 31, "name": "孙乾", - "starSkill": "1&4|3&9", - "colorStarSkill": "2&20|4&25", - "starSeid": "2&1133|4&1137|5&1134|6&504", - "colorStarSeid": "1&1144|3&1135|5&1138|6&505" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 32, "name": "周泰", - "starSkill": "1&4|3&10", - "colorStarSkill": "2&20|4&26", - "starSeid": "2&1133|4&1137|5&1134|6&505", - "colorStarSeid": "1&1144|3&1135|5&1138|6&506" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 33, "name": "孙策", - "starSkill": "1&4|3&11", - "colorStarSkill": "2&20|4&27", - "starSeid": "2&1133|4&1137|5&1134|6&506", - "colorStarSeid": "1&1144|3&1135|5&1138|6&507" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 34, "name": "周瑜", - "starSkill": "1&4|3&12", - "colorStarSkill": "2&20|4&28", - "starSeid": "2&1133|4&1137|5&1134|6&507", - "colorStarSeid": "1&1144|3&1135|5&1138|6&508" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 35, "name": "太史慈", - "starSkill": "1&4|3&13", - "colorStarSkill": "2&20|4&29", - "starSeid": "2&1133|4&1137|5&1134|6&508", - "colorStarSeid": "1&1144|3&1135|5&1138|6&509" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 36, "name": "孙权", - "starSkill": "1&4|3&14", - "colorStarSkill": "2&20|4&30", - "starSeid": "2&1133|4&1137|5&1134|6&509", - "colorStarSeid": "1&1144|3&1135|5&1138|6&510" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 37, "name": "甘宁", - "starSkill": "1&4|3&15", - "colorStarSkill": "2&20|4&31", - "starSeid": "2&1133|4&1137|5&1134|6&510", - "colorStarSeid": "1&1144|3&1135|5&1138|6&511" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 38, "name": "孙尚香", - "starSkill": "1&4|3&16", - "colorStarSkill": "2&20|4&32", - "starSeid": "2&1133|4&1137|5&1134|6&511", - "colorStarSeid": "1&1144|3&1135|5&1138|6&512" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 39, "name": "陆逊", - "starSkill": "1&4|3&17", - "colorStarSkill": "2&20|4&33", - "starSeid": "2&1133|4&1137|5&1134|6&512", - "colorStarSeid": "1&1144|3&1135|5&1138|6&513" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 40, "name": "小乔", - "starSkill": "1&4|3&18", - "colorStarSkill": "2&20|4&34", - "starSeid": "2&1133|4&1137|5&1134|6&513", - "colorStarSeid": "1&1144|3&1135|5&1138|6&514" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 41, "name": "大乔", - "starSkill": "1&4|3&19", - "colorStarSkill": "2&20|4&35", - "starSeid": "2&1133|4&1137|5&1134|6&514", - "colorStarSeid": "1&1144|3&1135|5&1138|6&515" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 42, "name": "步练师", - "starSkill": "1&4|3&20", - "colorStarSkill": "2&20|4&36", - "starSeid": "2&1133|4&1137|5&1134|6&515", - "colorStarSeid": "1&1144|3&1135|5&1138|6&516" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 43, "name": "左慈", - "starSkill": "1&4|3&21", - "colorStarSkill": "2&20|4&37", - "starSeid": "2&1133|4&1137|5&1134|6&516", - "colorStarSeid": "1&1144|3&1135|5&1138|6&517" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 44, "name": "吕布", - "starSkill": "1&4|3&22", - "colorStarSkill": "2&20|4&38", - "starSeid": "2&1133|4&1137|5&1134|6&517", - "colorStarSeid": "1&1144|3&1135|5&1138|6&518" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 45, "name": "张任", - "starSkill": "1&4|3&23", - "colorStarSkill": "2&20|4&39", - "starSeid": "2&1133|4&1137|5&1134|6&518", - "colorStarSeid": "1&1144|3&1135|5&1138|6&519" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 46, "name": "华佗", - "starSkill": "1&4|3&24", - "colorStarSkill": "2&20|4&40", - "starSeid": "2&1133|4&1137|5&1134|6&519", - "colorStarSeid": "1&1144|3&1135|5&1138|6&520" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 47, "name": "张角", - "starSkill": "1&4|3&25", - "colorStarSkill": "2&20|4&41", - "starSeid": "2&1133|4&1137|5&1134|6&520", - "colorStarSeid": "1&1144|3&1135|5&1138|6&521" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 48, "name": "南华", - "starSkill": "1&4|3&26", - "colorStarSkill": "2&20|4&42", - "starSeid": "2&1133|4&1137|5&1134|6&521", - "colorStarSeid": "1&1144|3&1135|5&1138|6&522" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 49, "name": "高顺", - "starSkill": "1&4|3&27", - "colorStarSkill": "2&20|4&43", - "starSeid": "2&1133|4&1137|5&1134|6&522", - "colorStarSeid": "1&1144|3&1135|5&1138|6&523" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 50, "name": "麹义", - "starSkill": "1&4|3&28", - "colorStarSkill": "2&20|4&44", - "starSeid": "2&1133|4&1137|5&1134|6&523", - "colorStarSeid": "1&1144|3&1135|5&1138|6&524" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 51, "name": "李儒", - "starSkill": "1&4|3&29", - "colorStarSkill": "2&20|4&45", - "starSeid": "2&1133|4&1137|5&1134|6&524", - "colorStarSeid": "1&1144|3&1135|5&1138|6&525" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 52, "name": "庞舞", - "starSkill": "1&4|3&30", - "colorStarSkill": "2&20|4&46", - "starSeid": "2&1133|4&1137|5&1134|6&525", - "colorStarSeid": "1&1144|3&1135|5&1138|6&526" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 53, "name": "夏侯轻衣", - "starSkill": "1&4|3&31", - "colorStarSkill": "2&20|4&47", - "starSeid": "2&1133|4&1137|5&1134|6&526", - "colorStarSeid": "1&1144|3&1135|5&1138|6&527" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 54, "name": "文丑", - "starSkill": "1&4|3&32", - "colorStarSkill": "2&20|4&48", - "starSeid": "2&1133|4&1137|5&1134|6&527", - "colorStarSeid": "1&1144|3&1135|5&1138|6&528" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 55, "name": "颜良", - "starSkill": "1&4|3&33", - "colorStarSkill": "2&20|4&49", - "starSeid": "2&1133|4&1137|5&1134|6&528", - "colorStarSeid": "1&1144|3&1135|5&1138|6&529" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 56, "name": "貂蝉", - "starSkill": "1&4|3&34", - "colorStarSkill": "2&20|4&50", - "starSeid": "2&1133|4&1137|5&1134|6&529", - "colorStarSeid": "1&1144|3&1135|5&1138|6&530" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1133&3|4&1137&3|5&1134&4|6&500&6", + "colorStarSeid": "1&1144&5|3&1135&3|5&1138&4|6&501&6" }, { "skillid": 57, "name": "王越", - "starSkill": "1&4|3&35", - "colorStarSkill": "2&20|4&51", - "starSeid": "2&1133|4&1137|5&1134|6&530", - "colorStarSeid": "1&1144|3&1135|5&1138|6&531" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 58, "name": "董卓", - "starSkill": "1&4|3&36", - "colorStarSkill": "2&20|4&52", - "starSeid": "2&1133|4&1137|5&1134|6&531", - "colorStarSeid": "1&1144|3&1135|5&1138|6&532" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1625&3|4&1629&3|5&1626&4|6&500&6", + "colorStarSeid": "1&1636&5|3&1627&3|5&1630&4|6&501&6" }, { "skillid": 301, "name": "曹操", - "starSkill": "1&4|3&37", - "colorStarSkill": "2&20|4&53", - "starSeid": "2&1133|4&1137|5&1134|6&532", - "colorStarSeid": "1&1144|3&1135|5&1138|6&533" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 302, "name": "夏侯惇", - "starSkill": "1&4|3&38", - "colorStarSkill": "2&20|4&54", - "starSeid": "2&1133|4&1137|5&1134|6&533", - "colorStarSeid": "1&1144|3&1135|5&1138|6&534" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 303, "name": "张辽", - "starSkill": "1&4|3&39", - "colorStarSkill": "2&20|4&55", - "starSeid": "2&1133|4&1137|5&1134|6&534", - "colorStarSeid": "1&1144|3&1135|5&1138|6&535" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 304, "name": "夏侯渊", - "starSkill": "1&4|3&40", - "colorStarSkill": "2&20|4&56", - "starSeid": "2&1133|4&1137|5&1134|6&535", - "colorStarSeid": "1&1144|3&1135|5&1138|6&536" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 305, "name": "郭嘉", - "starSkill": "1&4|3&41", - "colorStarSkill": "2&20|4&57", - "starSeid": "2&1133|4&1137|5&1134|6&536", - "colorStarSeid": "1&1144|3&1135|5&1138|6&537" + "starSkill": "1&14&1|3&15&2", + "colorStarSkill": "2&22&1|4&23&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 306, "name": "司马懿", - "starSkill": "1&4|3&42", - "colorStarSkill": "2&20|4&58", - "starSeid": "2&1133|4&1137|5&1134|6&537", - "colorStarSeid": "1&1144|3&1135|5&1138|6&538" + "starSkill": "1&6&1|3&7&2", + "colorStarSkill": "2&24&1|4&25&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 307, "name": "典韦", - "starSkill": "1&4|3&43", - "colorStarSkill": "2&20|4&59", - "starSeid": "2&1133|4&1137|5&1134|6&538", - "colorStarSeid": "1&1144|3&1135|5&1138|6&539" + "starSkill": "1&4&1|3&5&2", + "colorStarSkill": "2&20&1|4&21&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 308, "name": "庞德", - "starSkill": "1&4|3&44", - "colorStarSkill": "2&20|4&60", - "starSeid": "2&1133|4&1137|5&1134|6&539", - "colorStarSeid": "1&1144|3&1135|5&1138|6&540" + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 309, "name": "邓艾", - "starSkill": "1&4|3&45", - "colorStarSkill": "2&20|4&61", - "starSeid": "2&1133|4&1137|5&1134|6&540", - "colorStarSeid": "1&1144|3&1135|5&1138|6&541" + "starSkill": "1&10&1|3&11&2", + "colorStarSkill": "2&28&1|4&29&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 310, "name": "徐晃", - "starSkill": "1&4|3&46", - "colorStarSkill": "2&20|4&62", - "starSeid": "2&1133|4&1137|5&1134|6&541", - "colorStarSeid": "1&1144|3&1135|5&1138|6&542" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 311, "name": "曹仁", - "starSkill": "1&4|3&47", - "colorStarSkill": "2&20|4&63", - "starSeid": "2&1133|4&1137|5&1134|6&542", - "colorStarSeid": "1&1144|3&1135|5&1138|6&543" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 312, "name": "李典", - "starSkill": "1&4|3&48", - "colorStarSkill": "2&20|4&64", - "starSeid": "2&1133|4&1137|5&1134|6&543", - "colorStarSeid": "1&1144|3&1135|5&1138|6&544" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 313, "name": "蔡琰", - "starSkill": "1&4|3&49", - "colorStarSkill": "2&20|4&65", - "starSeid": "2&1133|4&1137|5&1134|6&544", - "colorStarSeid": "1&1144|3&1135|5&1138|6&545" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 314, "name": "贾诩", - "starSkill": "1&4|3&50", - "colorStarSkill": "2&20|4&66", - "starSeid": "2&1133|4&1137|5&1134|6&545", - "colorStarSeid": "1&1144|3&1135|5&1138|6&546" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 315, "name": "许褚", - "starSkill": "1&4|3&51", - "colorStarSkill": "2&20|4&67", - "starSeid": "2&1133|4&1137|5&1134|6&546", - "colorStarSeid": "1&1144|3&1135|5&1138|6&547" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 316, "name": "乐进", - "starSkill": "1&4|3&52", - "colorStarSkill": "2&20|4&68", - "starSeid": "2&1133|4&1137|5&1134|6&547", - "colorStarSeid": "1&1144|3&1135|5&1138|6&548" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 317, "name": "张飞", - "starSkill": "1&4|3&53", - "colorStarSkill": "2&20|4&69", - "starSeid": "2&1133|4&1137|5&1134|6&548", - "colorStarSeid": "1&1144|3&1135|5&1138|6&549" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 318, "name": "关羽", - "starSkill": "1&4|3&54", - "colorStarSkill": "2&20|4&70", - "starSeid": "2&1133|4&1137|5&1134|6&549", - "colorStarSeid": "1&1144|3&1135|5&1138|6&550" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 319, "name": "赵云", - "starSkill": "1&4|3&55", - "colorStarSkill": "2&20|4&71", - "starSeid": "2&1133|4&1137|5&1134|6&550", - "colorStarSeid": "1&1144|3&1135|5&1138|6&551" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 320, "name": "刘备", - "starSkill": "1&4|3&56", - "colorStarSkill": "2&20|4&72", - "starSeid": "2&1133|4&1137|5&1134|6&551", - "colorStarSeid": "1&1144|3&1135|5&1138|6&552" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 321, "name": "黄忠", - "starSkill": "1&4|3&57", - "colorStarSkill": "2&20|4&73", - "starSeid": "2&1133|4&1137|5&1134|6&552", - "colorStarSeid": "1&1144|3&1135|5&1138|6&553" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 322, "name": "诸葛亮", - "starSkill": "1&4|3&58", - "colorStarSkill": "2&20|4&74", - "starSeid": "2&1133|4&1137|5&1134|6&553", - "colorStarSeid": "1&1144|3&1135|5&1138|6&554" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 323, "name": "庞统", - "starSkill": "1&4|3&59", - "colorStarSkill": "2&20|4&75", - "starSeid": "2&1133|4&1137|5&1134|6&554", - "colorStarSeid": "1&1144|3&1135|5&1138|6&555" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 324, "name": "魏延", - "starSkill": "1&4|3&60", - "colorStarSkill": "2&20|4&76", - "starSeid": "2&1133|4&1137|5&1134|6&555", - "colorStarSeid": "1&1144|3&1135|5&1138|6&556" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 325, "name": "陈到", - "starSkill": "1&4|3&61", - "colorStarSkill": "2&20|4&77", - "starSeid": "2&1133|4&1137|5&1134|6&556", - "colorStarSeid": "1&1144|3&1135|5&1138|6&557" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 326, "name": "关银屏", - "starSkill": "1&4|3&62", - "colorStarSkill": "2&20|4&78", - "starSeid": "2&1133|4&1137|5&1134|6&557", - "colorStarSeid": "1&1144|3&1135|5&1138|6&558" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 327, "name": "马云禄", - "starSkill": "1&4|3&63", - "colorStarSkill": "2&20|4&79", - "starSeid": "2&1133|4&1137|5&1134|6&558", - "colorStarSeid": "1&1144|3&1135|5&1138|6&559" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 328, "name": "马良", - "starSkill": "1&4|3&64", - "colorStarSkill": "2&20|4&80", - "starSeid": "2&1133|4&1137|5&1134|6&559", - "colorStarSeid": "1&1144|3&1135|5&1138|6&560" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 329, "name": "黄月英", - "starSkill": "1&4|3&65", - "colorStarSkill": "2&20|4&81", - "starSeid": "2&1133|4&1137|5&1134|6&560", - "colorStarSeid": "1&1144|3&1135|5&1138|6&561" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 330, "name": "王平", - "starSkill": "1&4|3&66", - "colorStarSkill": "2&20|4&82", - "starSeid": "2&1133|4&1137|5&1134|6&561", - "colorStarSeid": "1&1144|3&1135|5&1138|6&562" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1349&3|4&1353&3|5&1350&4|6&500&6", + "colorStarSeid": "1&1360&5|3&1351&3|5&1354&4|6&501&6" }, { "skillid": 331, "name": "孙乾", - "starSkill": "1&4|3&67", - "colorStarSkill": "2&20|4&83", - "starSeid": "2&1133|4&1137|5&1134|6&562", - "colorStarSeid": "1&1144|3&1135|5&1138|6&563" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1553&3|4&1557&3|5&1554&4|6&500&6", + "colorStarSeid": "1&1564&5|3&1555&3|5&1558&4|6&501&6" }, { "skillid": 332, "name": "周泰", - "starSkill": "1&4|3&68", - "colorStarSkill": "2&20|4&84", - "starSeid": "2&1133|4&1137|5&1134|6&563", - "colorStarSeid": "1&1144|3&1135|5&1138|6&564" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 333, "name": "孙策", - "starSkill": "1&4|3&69", - "colorStarSkill": "2&20|4&85", - "starSeid": "2&1133|4&1137|5&1134|6&564", - "colorStarSeid": "1&1144|3&1135|5&1138|6&565" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 334, "name": "周瑜", - "starSkill": "1&4|3&70", - "colorStarSkill": "2&20|4&86", - "starSeid": "2&1133|4&1137|5&1134|6&565", - "colorStarSeid": "1&1144|3&1135|5&1138|6&566" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 335, "name": "太史慈", - "starSkill": "1&4|3&71", - "colorStarSkill": "2&20|4&87", - "starSeid": "2&1133|4&1137|5&1134|6&566", - "colorStarSeid": "1&1144|3&1135|5&1138|6&567" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 336, "name": "孙权", - "starSkill": "1&4|3&72", - "colorStarSkill": "2&20|4&88", - "starSeid": "2&1133|4&1137|5&1134|6&567", - "colorStarSeid": "1&1144|3&1135|5&1138|6&568" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 337, "name": "甘宁", - "starSkill": "1&4|3&73", - "colorStarSkill": "2&20|4&89", - "starSeid": "2&1133|4&1137|5&1134|6&568", - "colorStarSeid": "1&1144|3&1135|5&1138|6&569" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 338, "name": "孙尚香", - "starSkill": "1&4|3&74", - "colorStarSkill": "2&20|4&90", - "starSeid": "2&1133|4&1137|5&1134|6&569", - "colorStarSeid": "1&1144|3&1135|5&1138|6&570" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1265&3|4&1269&3|5&1266&4|6&500&6", + "colorStarSeid": "1&1276&5|3&1267&3|5&1270&4|6&501&6" }, { "skillid": 339, "name": "陆逊", - "starSkill": "1&4|3&75", - "colorStarSkill": "2&20|4&91", - "starSeid": "2&1133|4&1137|5&1134|6&570", - "colorStarSeid": "1&1144|3&1135|5&1138|6&571" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 340, "name": "小乔", - "starSkill": "1&4|3&76", - "colorStarSkill": "2&20|4&92", - "starSeid": "2&1133|4&1137|5&1134|6&571", - "colorStarSeid": "1&1144|3&1135|5&1138|6&572" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 341, "name": "大乔", - "starSkill": "1&4|3&77", - "colorStarSkill": "2&20|4&93", - "starSeid": "2&1133|4&1137|5&1134|6&572", - "colorStarSeid": "1&1144|3&1135|5&1138|6&573" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 342, "name": "步练师", - "starSkill": "1&4|3&78", - "colorStarSkill": "2&20|4&94", - "starSeid": "2&1133|4&1137|5&1134|6&573", - "colorStarSeid": "1&1144|3&1135|5&1138|6&574" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 343, "name": "左慈", - "starSkill": "1&4|3&79", - "colorStarSkill": "2&20|4&95", - "starSeid": "2&1133|4&1137|5&1134|6&574", - "colorStarSeid": "1&1144|3&1135|5&1138|6&575" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 344, "name": "吕布", - "starSkill": "1&4|3&80", - "colorStarSkill": "2&20|4&96", - "starSeid": "2&1133|4&1137|5&1134|6&575", - "colorStarSeid": "1&1144|3&1135|5&1138|6&576" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 345, "name": "张任", - "starSkill": "1&4|3&81", - "colorStarSkill": "2&20|4&97", - "starSeid": "2&1133|4&1137|5&1134|6&576", - "colorStarSeid": "1&1144|3&1135|5&1138|6&577" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 346, "name": "华佗", - "starSkill": "1&4|3&82", - "colorStarSkill": "2&20|4&98", - "starSeid": "2&1133|4&1137|5&1134|6&577", - "colorStarSeid": "1&1144|3&1135|5&1138|6&578" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 347, "name": "张角", - "starSkill": "1&4|3&83", - "colorStarSkill": "2&20|4&99", - "starSeid": "2&1133|4&1137|5&1134|6&578", - "colorStarSeid": "1&1144|3&1135|5&1138|6&579" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 348, "name": "南华", - "starSkill": "1&4|3&84", - "colorStarSkill": "2&20|4&100", - "starSeid": "2&1133|4&1137|5&1134|6&579", - "colorStarSeid": "1&1144|3&1135|5&1138|6&580" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 349, "name": "高顺", - "starSkill": "1&4|3&85", - "colorStarSkill": "2&20|4&101", - "starSeid": "2&1133|4&1137|5&1134|6&580", - "colorStarSeid": "1&1144|3&1135|5&1138|6&581" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 350, "name": "麹义", - "starSkill": "1&4|3&86", - "colorStarSkill": "2&20|4&102", - "starSeid": "2&1133|4&1137|5&1134|6&581", - "colorStarSeid": "1&1144|3&1135|5&1138|6&582" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 351, "name": "李儒", - "starSkill": "1&4|3&87", - "colorStarSkill": "2&20|4&103", - "starSeid": "2&1133|4&1137|5&1134|6&582", - "colorStarSeid": "1&1144|3&1135|5&1138|6&583" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 352, "name": "庞舞", - "starSkill": "1&4|3&88", - "colorStarSkill": "2&20|4&104", - "starSeid": "2&1133|4&1137|5&1134|6&583", - "colorStarSeid": "1&1144|3&1135|5&1138|6&584" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 353, "name": "夏侯轻衣", - "starSkill": "1&4|3&89", - "colorStarSkill": "2&20|4&105", - "starSeid": "2&1133|4&1137|5&1134|6&584", - "colorStarSeid": "1&1144|3&1135|5&1138|6&585" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 354, "name": "文丑", - "starSkill": "1&4|3&90", - "colorStarSkill": "2&20|4&106", - "starSeid": "2&1133|4&1137|5&1134|6&585", - "colorStarSeid": "1&1144|3&1135|5&1138|6&586" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 355, "name": "颜良", - "starSkill": "1&4|3&91", - "colorStarSkill": "2&20|4&107", - "starSeid": "2&1133|4&1137|5&1134|6&586", - "colorStarSeid": "1&1144|3&1135|5&1138|6&587" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 356, "name": "貂蝉", - "starSkill": "1&4|3&92", - "colorStarSkill": "2&20|4&108", - "starSeid": "2&1133|4&1137|5&1134|6&587", - "colorStarSeid": "1&1144|3&1135|5&1138|6&588" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1033&3|4&1034&3|5&1049&4|6&500&6", + "colorStarSeid": "1&1076&5|3&1035&3|5&1050&4|6&501&6" }, { "skillid": 357, "name": "王越", - "starSkill": "1&4|3&93", - "colorStarSkill": "2&20|4&109", - "starSeid": "2&1133|4&1137|5&1134|6&588", - "colorStarSeid": "1&1144|3&1135|5&1138|6&589" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 358, "name": "董卓", - "starSkill": "1&4|3&94", - "colorStarSkill": "2&20|4&110", - "starSeid": "2&1133|4&1137|5&1134|6&589", - "colorStarSeid": "1&1144|3&1135|5&1138|6&590" + "starSkill": "1&5001&1|3&5003&2", + "colorStarSkill": "2&5002&1|4&5004&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" + }, + { + "skillid": 359, + "name": "曹操", + "starSkill": "1&8&1|3&9&2", + "colorStarSkill": "2&26&1|4&27&2", + "starSeid": "2&1037&3|4&1038&3|5&1013&4|6&500&6", + "colorStarSeid": "1&1020&5|3&1039&3|5&1014&4|6&501&6" }, { "skillid": 1001, diff --git a/shared/resource/jsons/dic_zyz_se.json b/shared/resource/jsons/dic_zyz_se.json index 90da2a574..ba84757d8 100644 --- a/shared/resource/jsons/dic_zyz_se.json +++ b/shared/resource/jsons/dic_zyz_se.json @@ -367,7 +367,7 @@ "isShow": 1, "gainvalue": "20&48&13&0", "maxOnlyNum": 1, - "info": "&" + "info": "攻击时有20%概率给自身添加一个基于自身最大血量10%护盾" }, { "id": 1038, @@ -377,7 +377,7 @@ "isShow": 1, "gainvalue": "20&48&13&10000", "maxOnlyNum": 1, - "info": "&" + "info": "攻击时有20%概率给自身添加一个基于自身最大血量10%护盾,该次攻击伤害加深提升10%" }, { "id": 1039, @@ -387,7 +387,7 @@ "isShow": 1, "gainvalue": "25&48&13&10000", "maxOnlyNum": 1, - "info": "&" + "info": "攻击时有25%概率给自身添加一个基于自身最大血量10%护盾,该次攻击伤害加深提升10%" }, { "id": 1040, @@ -485,9 +485,9 @@ "img": 1, "type": 205, "isShow": 1, - "gainvalue": "&", + "gainvalue": "15&10", "maxOnlyNum": 1, - "info": "&" + "info": "攻击时有15%额外获得怒气10点怒气" }, { "id": 1050, @@ -495,9 +495,9 @@ "img": 1, "type": 205, "isShow": 1, - "gainvalue": "&", + "gainvalue": "20&10", "maxOnlyNum": 1, - "info": "&" + "info": "攻击时有20%额外获得怒气10点怒气" }, { "id": 1051, @@ -505,9 +505,9 @@ "img": 1, "type": 205, "isShow": 1, - "gainvalue": "&", + "gainvalue": "25&10", "maxOnlyNum": 1, - "info": "&" + "info": "攻击时有25%额外获得怒气10点怒气" }, { "id": 1052, @@ -6719,6 +6719,406 @@ "maxOnlyNum": 1, "info": "受到的所有治疗效果提升" }, + { + "id": 1701, + "name": "步甲I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "2&14&5", + "maxOnlyNum": 1, + "info": "受枪兵攻击时,伤害减免提升5%" + }, + { + "id": 1702, + "name": "步甲II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "2&14&10", + "maxOnlyNum": 1, + "info": "受枪兵攻击时,伤害减免提升10%" + }, + { + "id": 1703, + "name": "长刀I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "2&13&5", + "maxOnlyNum": 1, + "info": "攻击枪兵时,伤害加深提高5%" + }, + { + "id": 1704, + "name": "长刀II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "2&13&10", + "maxOnlyNum": 1, + "info": "攻击枪兵时,伤害加深提高10%" + }, + { + "id": 1705, + "name": "大盾I", + "img": 1, + "type": 0, + "isShow": 1, + "gainvalue": "&", + "maxOnlyNum": 0, + "info": "物理伤害免减提升10%" + }, + { + "id": 1706, + "name": "勇士I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "3&14&5", + "maxOnlyNum": 1, + "info": "受骑兵攻击时,伤害减免提升5%" + }, + { + "id": 1707, + "name": "勇士II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "3&14&10", + "maxOnlyNum": 1, + "info": "受骑兵攻击时,伤害减免提升10%" + }, + { + "id": 1708, + "name": "横枪I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "3&13&5", + "maxOnlyNum": 1, + "info": "攻击骑兵时,伤害加深提高5%" + }, + { + "id": 1709, + "name": "横枪II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "3&13&10", + "maxOnlyNum": 1, + "info": "攻击骑兵时,伤害加深提高10%" + }, + { + "id": 1710, + "name": "枪阵I", + "img": 1, + "type": 101, + "isShow": 1, + "gainvalue": "13&10000", + "maxOnlyNum": 1, + "info": "物理伤害加深提升10%" + }, + { + "id": 1711, + "name": "铁骑I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "4&14&5", + "maxOnlyNum": 1, + "info": "受弓兵攻击时,伤害减免提升5%" + }, + { + "id": 1712, + "name": "铁骑II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "4&14&10", + "maxOnlyNum": 1, + "info": "受弓兵攻击时,伤害减免提升10%" + }, + { + "id": 1713, + "name": "冲阵I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "4&13&5", + "maxOnlyNum": 1, + "info": "攻击弓兵时,伤害加深提高5%" + }, + { + "id": 1714, + "name": "冲阵II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "4&13&10", + "maxOnlyNum": 1, + "info": "攻击弓兵时,伤害加深提高10%" + }, + { + "id": 1715, + "name": "呼啸I", + "img": 1, + "type": 0, + "isShow": 1, + "gainvalue": "&", + "maxOnlyNum": 1, + "info": "移动力提升1" + }, + { + "id": 1716, + "name": "长守I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "1&14&5", + "maxOnlyNum": 1, + "info": "受步兵攻击时,伤害减免提升5%" + }, + { + "id": 1717, + "name": "长守II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "1&14&10", + "maxOnlyNum": 1, + "info": "受步兵攻击时,伤害减免提升10%" + }, + { + "id": 1718, + "name": "箭雨I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "1&13&5", + "maxOnlyNum": 1, + "info": "攻击步兵时,伤害加深提高5%" + }, + { + "id": 1719, + "name": "箭雨II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "1&13&10", + "maxOnlyNum": 1, + "info": "攻击步兵时,伤害加深提高10%" + }, + { + "id": 1720, + "name": "穿杨I", + "img": 1, + "type": 0, + "isShow": 1, + "gainvalue": "&", + "maxOnlyNum": 0, + "info": "射程提升1" + }, + { + "id": 1721, + "name": "锤石I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "6&14&5", + "maxOnlyNum": 1, + "info": "受策士攻击时,伤害减免提升5%" + }, + { + "id": 1722, + "name": "锤石II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "6&14&10", + "maxOnlyNum": 1, + "info": "受策士攻击时,伤害减免提升10%" + }, + { + "id": 1723, + "name": "斗气I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "6&13&5", + "maxOnlyNum": 1, + "info": "攻击策士时,伤害加深提高5%" + }, + { + "id": 1724, + "name": "斗气II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "6&13&10", + "maxOnlyNum": 1, + "info": "攻击策士时,伤害加深提高10%" + }, + { + "id": 1725, + "name": "怒冲I", + "img": 1, + "type": 101, + "isShow": 1, + "gainvalue": "10&5000", + "maxOnlyNum": 0, + "info": "暴击提高5%" + }, + { + "id": 1726, + "name": "遁甲I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "7&14&5", + "maxOnlyNum": 1, + "info": "受医者攻击时,伤害减免提升5%" + }, + { + "id": 1727, + "name": "遁甲II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "7&14&10", + "maxOnlyNum": 1, + "info": "受医者攻击时,伤害减免提升10%" + }, + { + "id": 1728, + "name": "寒心I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "7&13&5", + "maxOnlyNum": 1, + "info": "攻击医者时,伤害加深提高5%" + }, + { + "id": 1729, + "name": "寒心II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "7&13&10", + "maxOnlyNum": 1, + "info": "攻击医者时,伤害加深提高10%" + }, + { + "id": 1730, + "name": "筹谋I", + "img": 1, + "type": 101, + "isShow": 1, + "gainvalue": "13&10000", + "maxOnlyNum": 0, + "info": "策略伤害加深提升10%" + }, + { + "id": 1731, + "name": "光盾I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "8&14&5", + "maxOnlyNum": 1, + "info": "受道士攻击时,伤害减免提升5%" + }, + { + "id": 1732, + "name": "光盾II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "8&14&10", + "maxOnlyNum": 1, + "info": "受道士攻击时,伤害减免提升10%" + }, + { + "id": 1733, + "name": "圣手I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "8&13&5", + "maxOnlyNum": 1, + "info": "攻击道士时,伤害加深提高5%" + }, + { + "id": 1734, + "name": "圣手II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "8&13&10", + "maxOnlyNum": 1, + "info": "攻击道士时,伤害加深提高10%" + }, + { + "id": 1735, + "name": "灵药I", + "img": 1, + "type": 101, + "isShow": 1, + "gainvalue": "14&5000", + "maxOnlyNum": 0, + "info": "伤害减免提升5%" + }, + { + "id": 1736, + "name": "卸力I", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "5&14&5", + "maxOnlyNum": 1, + "info": "受斗士攻击时,伤害减免提升5%" + }, + { + "id": 1737, + "name": "卸力II", + "img": 1, + "type": 123, + "isShow": 1, + "gainvalue": "5&14&10", + "maxOnlyNum": 1, + "info": "受斗士攻击时,伤害减免提升10%" + }, + { + "id": 1738, + "name": "借势I", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "5&13&5", + "maxOnlyNum": 1, + "info": "攻击斗士时,伤害加深提高5%" + }, + { + "id": 1739, + "name": "借势II", + "img": 1, + "type": 122, + "isShow": 1, + "gainvalue": "5&13&10", + "maxOnlyNum": 1, + "info": "攻击斗士时,伤害加深提高10%" + }, + { + "id": 1740, + "name": "专注I", + "img": 1, + "type": 101, + "isShow": 1, + "gainvalue": "9&5000", + "maxOnlyNum": 0, + "info": "命中提升5%" + }, { "id": 301, "name": "血量提升", diff --git a/shared/resource/jsons/dic_zyz_skill.json b/shared/resource/jsons/dic_zyz_skill.json index 056d8e2e2..87bdd421d 100644 --- a/shared/resource/jsons/dic_zyz_skill.json +++ b/shared/resource/jsons/dic_zyz_skill.json @@ -1,6 +1,7 @@ [ { "id": 1, + "imgId": 2, "name": "砍一刀", "hurt_formula": " (ownAtk*2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -20,6 +21,7 @@ }, { "id": 2, + "imgId": 2, "name": "无双画戟", "hurt_formula": " (ownAtk*2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -39,6 +41,7 @@ }, { "id": 3, + "imgId": 3, "name": "温侯斩", "hurt_formula": " (ownAtk*2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -58,6 +61,7 @@ }, { "id": 4, + "imgId": 4, "name": "长枪投射I", "hurt_formula": " (ownAtk*2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -77,6 +81,7 @@ }, { "id": 5, + "imgId": 5, "name": "赦免I", "hurt_formula": 0, "gain_formula": "&", @@ -96,6 +101,7 @@ }, { "id": 6, + "imgId": 6, "name": "连珠三箭 I", "hurt_formula": " (ownAtk*1.2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -115,6 +121,7 @@ }, { "id": 7, + "imgId": 7, "name": "鼓舞 I", "hurt_formula": 0, "gain_formula": "&", @@ -134,6 +141,7 @@ }, { "id": 8, + "imgId": 8, "name": "猛毒迷雾", "hurt_formula": " (ownAtk*1*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -153,6 +161,7 @@ }, { "id": 9, + "imgId": 9, "name": "投毒", "hurt_formula": " (ownAtk*1.5*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -172,6 +181,7 @@ }, { "id": 10, + "imgId": 10, "name": "巨锤震击 I", "hurt_formula": " (ownAtk*2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -191,6 +201,7 @@ }, { "id": 11, + "imgId": 11, "name": "虎痴 I", "hurt_formula": 0, "gain_formula": "&", @@ -210,6 +221,7 @@ }, { "id": 12, + "imgId": 11, "name": "薤叶芸香", "hurt_formula": "ownAtk*1", "gain_formula": "&", @@ -229,6 +241,7 @@ }, { "id": 13, + "imgId": 11, "name": "麻沸散", "hurt_formula": "ownAtk*1", "gain_formula": "&", @@ -248,6 +261,7 @@ }, { "id": 14, + "imgId": 14, "name": "敌阵突破 I", "hurt_formula": " (ownAtk*2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -267,6 +281,7 @@ }, { "id": 15, + "imgId": 15, "name": "坚壁 I", "hurt_formula": 0, "gain_formula": "&", @@ -286,6 +301,7 @@ }, { "id": 16, + "imgId": 16, "name": "回春", "hurt_formula": "ownAtk*0.6", "gain_formula": "&", @@ -305,6 +321,7 @@ }, { "id": 17, + "imgId": 17, "name": "反馈", "hurt_formula": "ownAtk*1", "gain_formula": "&", @@ -324,6 +341,7 @@ }, { "id": 18, + "imgId": 18, "name": "狼王爪击", "hurt_formula": " (ownAtk*1.2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -343,6 +361,7 @@ }, { "id": 19, + "imgId": 19, "name": "召唤狼群", "hurt_formula": 0, "gain_formula": "&", @@ -362,6 +381,7 @@ }, { "id": 20, + "imgId": 4, "name": "长枪投射II", "hurt_formula": " (ownAtk*3*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -381,6 +401,7 @@ }, { "id": 21, + "imgId": 5, "name": "赦免II", "hurt_formula": 0, "gain_formula": "&", @@ -400,6 +421,7 @@ }, { "id": 22, + "imgId": 14, "name": "敌阵突破 II", "hurt_formula": " (ownAtk*3*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -419,6 +441,7 @@ }, { "id": 23, + "imgId": 15, "name": "坚壁 II", "hurt_formula": 0, "gain_formula": "&", @@ -438,6 +461,7 @@ }, { "id": 24, + "imgId": 6, "name": "连珠三箭 II", "hurt_formula": " (ownAtk*1.5*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -457,6 +481,7 @@ }, { "id": 25, + "imgId": 7, "name": "鼓舞 II", "hurt_formula": 0, "gain_formula": "&", @@ -476,6 +501,7 @@ }, { "id": 26, + "imgId": 8, "name": "猛毒迷雾", "hurt_formula": " (ownAtk*1.2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -495,7 +521,8 @@ }, { "id": 27, - "name": "投毒", + "imgId": 9, + "name": "投毒II", "hurt_formula": " (ownAtk*1.8*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", "rage_cost": 0, @@ -514,6 +541,7 @@ }, { "id": 28, + "imgId": 10, "name": "巨锤震击 II", "hurt_formula": " (ownAtk*2.2*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", "gain_formula": "&", @@ -533,6 +561,7 @@ }, { "id": 29, + "imgId": 11, "name": "虎痴 II", "hurt_formula": 0, "gain_formula": "&", @@ -549,5 +578,85 @@ "skill_info": "恢复自身20%攻击力的血量,并且给自身附加伤害减免15%,4回合内作用2次", "skilNameImage": 0, "skillSceneSpine": "&" + }, + { + "id": 5001, + "imgId": 2, + "name": "战龙无双I", + "hurt_formula": " (ownAtk*2.5*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", + "gain_formula": "&", + "rage_cost": 100, + "cd": 0, + "attack_area": 5, + "strike_area": 2, + "object": 0, + "skill_class": 1, + "effect": "3348&", + "actionName": "skill1", + "secondActionName": "skill1_B", + "oppoSecondActionName": "&", + "skill_info": "猛击地面造成250%的范围伤害,范围内人数越多总伤害越高,同时给目标添加封怒的以及物攻下降效果,命中的目标会降低少量怒气", + "skilNameImage": 0, + "skillSceneSpine": "nuqijidonghuablue" + }, + { + "id": 5002, + "imgId": 2, + "name": "战龙无双II", + "hurt_formula": " (ownAtk*3*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", + "gain_formula": "&", + "rage_cost": 100, + "cd": 0, + "attack_area": 5, + "strike_area": 2, + "object": 0, + "skill_class": 1, + "effect": "3348&", + "actionName": "skill1", + "secondActionName": "skill1_B", + "oppoSecondActionName": "&", + "skill_info": "猛击地面造成300%的范围伤害,范围内人数越多总伤害越高,同时给目标添加封怒的以及物攻下降效果,命中的目标会降低少量怒气", + "skilNameImage": 0, + "skillSceneSpine": "nuqijidonghuablue" + }, + { + "id": 5003, + "imgId": 3, + "name": "降龙斩I", + "hurt_formula": " (ownAtk*2.5*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", + "gain_formula": "&", + "rage_cost": 0, + "cd": 3, + "attack_area": 1, + "strike_area": 1, + "object": 0, + "skill_class": 2, + "effect": "3352&", + "actionName": "skill2", + "secondActionName": "&", + "oppoSecondActionName": "&", + "skill_info": "对敌人连续攻击两次,每击造成250%的伤害", + "skilNameImage": 0, + "skillSceneSpine": "&" + }, + { + "id": 5004, + "imgId": 3, + "name": "降龙斩II", + "hurt_formula": " (ownAtk*3*ownTerAddtion/100 - oppoDef*oppoTerAddtion/100)*(1 + ownDamInc/100000 - oppoDamDec/100000)", + "gain_formula": "&", + "rage_cost": 0, + "cd": 3, + "attack_area": 1, + "strike_area": 1, + "object": 0, + "skill_class": 2, + "effect": "3352&", + "actionName": "skill2", + "secondActionName": "&", + "oppoSecondActionName": "&", + "skill_info": "对敌人连续攻击两次,每击造成300%的伤害", + "skilNameImage": 0, + "skillSceneSpine": "&" } ] \ No newline at end of file