From 847fe86ea71c671ad52cbf70ec8ed842ca98f58c Mon Sep 17 00:00:00 2001 From: meixiongfeng <766881921@qq.com> Date: Mon, 29 May 2023 14:38:41 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=A7=BB=E5=87=BA=E4=B8=8D=E7=94=A8?= =?UTF-8?q?=E7=9A=84=E6=A8=A1=E5=9D=97=20=E6=B7=BB=E5=8A=A0=E6=96=B0?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- comm/imodule.go | 4 +- modules/arena/api_buy.go | 2 +- modules/tools/comp_configure.go | 18 +- modules/tools/module.go | 6 +- modules/troll/api.go | 37 --- modules/troll/api_afkset.go | 35 --- modules/troll/api_buyorsell.go | 174 ------------- modules/troll/api_getReward.go | 49 ---- modules/troll/api_getlist.go | 111 --------- modules/troll/api_ranklist.go | 38 --- modules/troll/api_recordlist.go | 20 -- modules/troll/api_surpriseid.go | 65 ----- modules/troll/comp_configure.go | 185 -------------- modules/troll/model_record.go | 55 ---- modules/troll/model_troll.go | 65 ----- modules/troll/module.go | 310 ----------------------- pb/comm.pb.go | 395 +++++++++++++++-------------- pb/notify_msg.pb.go | 61 +++-- pb/user_msg.pb.go | 428 +++++++++++++++----------------- services/worker/main.go | 2 - 20 files changed, 465 insertions(+), 1595 deletions(-) delete mode 100644 modules/troll/api.go delete mode 100644 modules/troll/api_afkset.go delete mode 100644 modules/troll/api_buyorsell.go delete mode 100644 modules/troll/api_getReward.go delete mode 100644 modules/troll/api_getlist.go delete mode 100644 modules/troll/api_ranklist.go delete mode 100644 modules/troll/api_recordlist.go delete mode 100644 modules/troll/api_surpriseid.go delete mode 100644 modules/troll/comp_configure.go delete mode 100644 modules/troll/model_record.go delete mode 100644 modules/troll/model_troll.go delete mode 100644 modules/troll/module.go diff --git a/comm/imodule.go b/comm/imodule.go index 87c545cdf..028ce07b6 100644 --- a/comm/imodule.go +++ b/comm/imodule.go @@ -481,7 +481,9 @@ type ( ITools interface { GetGroupDataByLottery(lotteryId int32, vipLv int32, lv int32) (items []*cfg.Gameatn) GetGlobalConf() *cfg.GameGlobalData - GetPriceGroupCost(pricegroupId int32, purchase int32) (res []*cfg.Gameatn) + GetPriceGroupCost(pricegroupId int32, purchase int32) (res []*cfg.Gameatn, err error) + + GetPriceGroupLen(pricegroupId int32) (count int32, err error) } IReputation interface { diff --git a/modules/arena/api_buy.go b/modules/arena/api_buy.go index 7e6b29034..a938e38e6 100644 --- a/modules/arena/api_buy.go +++ b/modules/arena/api_buy.go @@ -44,7 +44,7 @@ func (this *apiComp) Buy(session comm.IUserSession, req *pb.ArenaBuyReq) (code p code = pb.ErrorCode_ArenaTicketBuyUp return } - if res := this.module.ModuleTools.GetPriceGroupCost(comm.ArenaBuyType, info.Buynum+i+1); len(res) > 0 { + if res, _ := this.module.ModuleTools.GetPriceGroupCost(comm.ArenaBuyType, info.Buynum+i+1); len(res) > 0 { need = append(need, res...) } else { code = pb.ErrorCode_ConfigNoFound diff --git a/modules/tools/comp_configure.go b/modules/tools/comp_configure.go index 5bb0d95d8..ecef8640f 100644 --- a/modules/tools/comp_configure.go +++ b/modules/tools/comp_configure.go @@ -612,11 +612,25 @@ func (this *MCompConfigure) GetPriceGroup(pricegroupId int32) (sz []*cfg.GamePri return this._price[pricegroupId] } -func (this *MCompConfigure) GetPriceGroupCost(pricegroupId int32, purchase int32) (res []*cfg.Gameatn) { +func (this *MCompConfigure) GetPriceGroupCost(pricegroupId int32, purchase int32) (res []*cfg.Gameatn, err error) { + if _, ok := this._price[pricegroupId]; !ok { + err = comm.NewNotFoundConfErr("tools", game_price, pricegroupId) + return + } for _, v := range this._price[pricegroupId] { if v.Purchasemin <= purchase && purchase <= v.Purchasemax { - return v.Cost + res = v.Cost + return } } return } + +func (this *MCompConfigure) GetPriceGroupLen(pricegroupId int32) (count int32, err error) { + if _, ok := this._price[pricegroupId]; !ok { + err = comm.NewNotFoundConfErr("tools", game_price, pricegroupId) + } + count = int32(len(this._price[pricegroupId])) + + return +} diff --git a/modules/tools/module.go b/modules/tools/module.go index e2e8f5cf1..77a053823 100644 --- a/modules/tools/module.go +++ b/modules/tools/module.go @@ -49,6 +49,10 @@ func (this *Tools) GetGlobalConf() *cfg.GameGlobalData { return this.configure.GetGlobalConf() } -func (this *Tools) GetPriceGroupCost(pricegroupId int32, purchase int32) (res []*cfg.Gameatn) { +func (this *Tools) GetPriceGroupCost(pricegroupId int32, purchase int32) (res []*cfg.Gameatn, err error) { return this.configure.GetPriceGroupCost(pricegroupId, purchase) } + +func (this *Tools) GetPriceGroupLen(pricegroupId int32) (count int32, err error) { + return this.configure.GetPriceGroupLen(pricegroupId) +} diff --git a/modules/troll/api.go b/modules/troll/api.go deleted file mode 100644 index 64b03521a..000000000 --- a/modules/troll/api.go +++ /dev/null @@ -1,37 +0,0 @@ -package troll - -import ( - "go_dreamfactory/lego/core" - "go_dreamfactory/modules" -) - -const ( - TrollGetListResp = "getlist" - TrollBuyOrSellResp = "buyorsell" - TrollNpcRewardResp = "npcreward" - TrollRankListResp = "ranklist" - TrollRecordListResp = "recordlist" - TrollAfkSetResp = "afkset" - TrollSurpriseIdResp = "surpriseid" -) - -type apiComp struct { - modules.MCompGate - service core.IService - configure *configureComp - module *Troll -} - -//组件初始化接口 -func (this *apiComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) { - err = this.MCompGate.Init(service, module, comp, options) - this.module = module.(*Troll) - this.service = service - return -} - -func (this *apiComp) Start() (err error) { - err = this.MCompGate.Start() - - return -} diff --git a/modules/troll/api_afkset.go b/modules/troll/api_afkset.go deleted file mode 100644 index 318c6ebc0..000000000 --- a/modules/troll/api_afkset.go +++ /dev/null @@ -1,35 +0,0 @@ -package troll - -import ( - "go_dreamfactory/comm" - "go_dreamfactory/pb" -) - -func (this *apiComp) AfkSetCheck(session comm.IUserSession, req *pb.TrollAfkSetReq) (code pb.ErrorCode) { - - return -} - -// 设置挂机规则 -func (this *apiComp) AfkSet(session comm.IUserSession, req *pb.TrollAfkSetReq) (code pb.ErrorCode, data *pb.ErrorData) { - var ( - update map[string]interface{} - ) - - update = make(map[string]interface{}) - code = this.AfkSetCheck(session, req) - troll, err := this.module.modelTroll.getTrollList(session.GetUserId()) - if err != nil { - code = pb.ErrorCode_DBError - return - } - troll.Buy = req.Buy //this.configure.GetTrollRule(comm.TrollBuy) - troll.Sell = req.Sell //this.configure.GetTrollRule(comm.TrollSell) - //troll.AiCount = req.Count - update["buy"] = troll.Buy - update["sell"] = troll.Sell - //update["aiCount"] = troll.AiCount - this.module.ModifyTrollData(session.GetUserId(), update) - session.SendMsg(string(this.module.GetType()), TrollAfkSetResp, &pb.TrollAfkSetResp{Data: troll}) - return -} diff --git a/modules/troll/api_buyorsell.go b/modules/troll/api_buyorsell.go deleted file mode 100644 index 63d8088a7..000000000 --- a/modules/troll/api_buyorsell.go +++ /dev/null @@ -1,174 +0,0 @@ -package troll - -import ( - "go_dreamfactory/comm" - "go_dreamfactory/pb" - "go_dreamfactory/sys/configure" - "math" -) - -//参数校验 -func (this *apiComp) BuyOrSellCheck(session comm.IUserSession, req *pb.TrollBuyOrSellReq) (code pb.ErrorCode) { - if len(req.Items) == 0 { - code = pb.ErrorCode_ReqParameterError - } - return -} - -func (this *apiComp) BuyOrSell(session comm.IUserSession, req *pb.TrollBuyOrSellReq) (code pb.ErrorCode, data *pb.ErrorData) { - var ( - bSell bool // 是否有出售 - gold int32 // 当次交易 获得的金币 - earn int32 // 只统计赚的金币 - update map[string]interface{} - gridNum int32 // 格子数量 - ) - update = make(map[string]interface{}) - if code = this.BuyOrSellCheck(session, req); code != pb.ErrorCode_Success { - return // 参数校验失败直接返回 - } - trolltrain, err := this.module.modelTroll.getTrollList(session.GetUserId()) - if err != nil { - code = pb.ErrorCode_DBError - return - } - dayMaxCount := this.configure.GetTrollRule(comm.TrollBuyCount) - aiMaxCount := this.configure.GetTrollRule(comm.TrollAIBuyCount) - for k, v := range req.Items { - - if v == 0 { // 过滤数量为0 的消息 - continue - } - if trolltrain.RangeId == 0 { - trolltrain.RangeId = 1 - update["rangeId"] = trolltrain.RangeId - } - if v < 0 { - if !bSell { - bSell = true - trolltrain.SellCount += 1 // 交易次数+1 - if trolltrain.SellCount > dayMaxCount || (trolltrain.SellCount+trolltrain.AiCount) > aiMaxCount { - code = pb.ErrorCode_TrollMaxSellCount // 达到最大交易次数 直接返回 - return - } - update["sellCount"] = trolltrain.SellCount - } - } - - if _, ok := trolltrain.Shop[k]; !ok { - if v > 0 { - trolltrain.Shop[k] = v // 限购 - } - } else { - if v > 0 { - trolltrain.Shop[k] += v // 限购 - } - } - // 校验 是否大于买入最大限制 - goods := this.configure.GetTrollGoods(k) - if goods == nil { - return - } - if trolltrain.Shop[k] > goods.Max { // 判断是否有效交易 - // 买入上限 直接返回 - code = pb.ErrorCode_TrollBuyMax - return - } else if trolltrain.Items[k]+v < 0 { //卖出数量不足 - code = pb.ErrorCode_TrollSellMax - return - } - - // 第一次购买商品 - if trolltrain.TarinPos == 0 { - if _, ok := trolltrain.Price[k]; !ok { - trolltrain.Price[k] = 0 - } - trolltrain.Price[k] = goods.Goodsprice * goods.StarMoney / 1000 - trolltrain.RefreshTime = configure.Now().Unix() - //消耗的金币 - gold -= trolltrain.Price[k] * trolltrain.Items[k] - } else { - p := this.configure.GetTrollCoefficient(trolltrain.RangeId) - if p == nil { - return - } - var sellPrice int32 // 交易价格 - if trolltrain.TarinPos == 0 { - sellPrice = goods.Goodsprice * goods.StarMoney / 1000 - } else { - sellPrice = int32(p.Coefficient) * goods.Goodsprice / 1000 - } - // 校验是不是惊喜价格 - if d1, ok := trolltrain.SurpriseID[trolltrain.TarinPos-1]; ok { - if d1 == k { - sellPrice = this.configure.GetTrollRule(comm.TrollSurprise) / 1000 - } - } - if v < 0 { // 卖出 - trolltrain.Items[k] += v - if sellPrice > trolltrain.Price[k] { // 赚了 - earn += (sellPrice - trolltrain.Price[k]) * v - } - gold -= sellPrice * v - } else { // 买入 计算平均价格 - totalGold := trolltrain.Items[k] * trolltrain.Price[k] - totalGold += v * sellPrice - trolltrain.Items[k] += v - trolltrain.Price[k] = totalGold / trolltrain.Items[k] - gold -= v * sellPrice - } - } - } - // 重新计算格子数量 - grid := this.configure.GetTrollRule(comm.TrollItemCount) - for _, v := range trolltrain.Items { - if v > 0 { - gridNum += int32(math.Ceil(float64(v) / float64(grid))) - } - } - - trolltrain.GridNum = gridNum - if gridNum > this.configure.GetTrollRule(comm.TrollGridCount) { // 背包格子上限 - code = pb.ErrorCode_TrollMaxItemCount - return - } - code = this.module.ModuleUser.AddAttributeValue(session, comm.ResGold, int32(gold), true) - if code != pb.ErrorCode_Success { // 金币不足 - code = pb.ErrorCode_GoldNoEnough - return - } - - // 清除数量为0 的 - for k, v := range trolltrain.Items { - if v == 0 { - delete(trolltrain.Items, k) - if _, ok := trolltrain.Price[k]; ok { - delete(trolltrain.Price, k) // 清除价格 - } - } - } - trolltrain.TotalEarn += -int64(earn) // 累计获得的金币 - // check npc level - if confLv := this.configure.GetTrollLv(trolltrain.GetNpcLv() + 1); confLv != nil { - if trolltrain.TotalEarn >= int64(confLv.Money) { - trolltrain.NpcLv += 1 // npc levelUp - update["npcLv"] = trolltrain.NpcLv - } - } - update["items"] = trolltrain.Items - update["price"] = trolltrain.Price - update["totalEarn"] = trolltrain.TotalEarn - - update["gridNum"] = trolltrain.GridNum - update["shop"] = trolltrain.Shop - this.module.ModifyTrollData(session.GetUserId(), update) - this.module.SeTrollRankList(trolltrain.TotalEarn, session.GetUserId()) - session.SendMsg(string(this.module.GetType()), TrollBuyOrSellResp, &pb.TrollBuyOrSellResp{Data: trolltrain}) - if gold != 0 { - this.module.record.AddTrollRecord(session.GetUserId(), gold, trolltrain.TarinPos) - } - - // this.module.ModuleRtask.SendToRtask(session, comm.Rtype153, 1) - go this.module.ModuleRtask.TriggerTask(session.GetUserId(), comm.GettaskParam(comm.Rtype153, 1)) - return -} diff --git a/modules/troll/api_getReward.go b/modules/troll/api_getReward.go deleted file mode 100644 index 7f0fa5b66..000000000 --- a/modules/troll/api_getReward.go +++ /dev/null @@ -1,49 +0,0 @@ -package troll - -import ( - "go_dreamfactory/comm" - "go_dreamfactory/pb" -) - -//参数校验 -func (this *apiComp) NpcRewardCheck(session comm.IUserSession, req *pb.TrollNpcRewardReq) (code pb.ErrorCode) { - - return -} - -///美食城领取奖励 -func (this *apiComp) NpcReward(session comm.IUserSession, req *pb.TrollNpcRewardReq) (code pb.ErrorCode, data *pb.ErrorData) { - var ( - update map[string]interface{} - ) - code = this.NpcRewardCheck(session, req) - _troll, err := this.module.modelTroll.getTrollList(session.GetUserId()) - if err != nil { - code = pb.ErrorCode_DBError - return - } - conf := this.module.configure.GetTrollLv(req.RewardId) - if conf == nil { - code = pb.ErrorCode_ReqParameterError - } - if confLv := this.configure.GetTrollLv(req.RewardId); confLv != nil { - if _troll.TotalEarn >= int64(confLv.Money) { - if _, ok := _troll.NpcReward[req.RewardId]; !ok { - - if code = this.module.DispenseRes(session, conf.Reword, true); code != pb.ErrorCode_Success { - return - } - _troll.NpcReward[req.RewardId] = 1 - update = make(map[string]interface{}, 0) - update["npcReward"] = _troll.NpcReward - this.module.ModifyTrollData(session.GetUserId(), update) - } else { - code = pb.ErrorCode_TrollRepeatedReward - return - } - } - } - - session.SendMsg(string(this.module.GetType()), TrollNpcRewardResp, &pb.TrollNpcRewardResp{Data: _troll}) - return -} diff --git a/modules/troll/api_getlist.go b/modules/troll/api_getlist.go deleted file mode 100644 index 1b88f0347..000000000 --- a/modules/troll/api_getlist.go +++ /dev/null @@ -1,111 +0,0 @@ -package troll - -import ( - "crypto/rand" - "go_dreamfactory/comm" - "go_dreamfactory/pb" - "go_dreamfactory/sys/configure" - "go_dreamfactory/utils" - "math/big" -) - -//参数校验 -func (this *apiComp) GetListCheck(session comm.IUserSession, req *pb.TrollGetListReq) (code pb.ErrorCode) { - - return -} - -func (this *apiComp) GetList(session comm.IUserSession, req *pb.TrollGetListReq) (code pb.ErrorCode, data *pb.ErrorData) { - var ( - update map[string]interface{} - maxCoefficient int32 - ) - - update = make(map[string]interface{}) - if code = this.GetListCheck(session, req); code != pb.ErrorCode_Success { - return // 参数校验失败直接返回 - } - trolltrain, err := this.module.modelTroll.getTrollList(session.GetUserId()) - if err != nil { - code = pb.ErrorCode_DBError - return - } - // 自动交易 - this.module.TrollAI(session, trolltrain) - - maxCoefficient = this.configure.GetTrollMaxCoefficientNux() // 增长幅度的最大值 - if maxCoefficient == 0 { - code = pb.ErrorCode_ConfigNoFound - return - } - // 跨天 则清除 每日交易次数 - if !utils.IsToday(trolltrain.ResetTime) { - trolltrain.ResetTime = configure.Now().Unix() - update["resetTime"] = trolltrain.ResetTime - trolltrain.SellCount = 0 - update["sellCount"] = trolltrain.SellCount // 重置每日交易次数 - trolltrain.AiCount = 0 - update["aiCount"] = trolltrain.AiCount // 重置ai 交易次数 - this.module.ModifyTrollData(session.GetUserId(), update) - } - - /// 计算经过了多少个周期 - szTrain := this.configure.GetTrollAllTrain() - var ( - circletime int32 // 循环一个周期的时间 - circleCount int32 // 循环的次数 - leftTime int32 // 离到达最后一站剩余的时间 - index int32 // 总共经过了多少次车站 - ) - for _, v := range szTrain { - circletime += v - } - if int32(len(szTrain)) < trolltrain.TarinPos { - this.module.Errorf("TarinPos error: TarinPos:%d,maxLen:%d", trolltrain.TarinPos, len(szTrain)) - code = pb.ErrorCode_ConfigNoFound - return - } - if configure.Now().Unix()-trolltrain.RefreshTime < int64(szTrain[trolltrain.TarinPos-1]) { - session.SendMsg(string(this.module.GetType()), TrollGetListResp, &pb.TrollGetListResp{Data: trolltrain}) - return - } - trainNum := this.configure.GetTrollMaxTraintNum() - trolltrain.Shop = make(map[int32]int32) // 清空商人的购买数据 - update["shop"] = trolltrain.Shop - t := int32(configure.Now().Unix() - trolltrain.Ctime) - circleCount = t / circletime // 经过的周期数 - leftTime = t % circletime - if trolltrain.Circle != circleCount { - trolltrain.SurpriseID = make(map[int32]int32, 0) - n, _ := rand.Int(rand.Reader, big.NewInt(int64(trainNum))) - // 只算当前商人所属的货物 - g := this.configure.GetTrollGoodsFor(int32(n.Int64()) + 1) - n2, _ := rand.Int(rand.Reader, big.NewInt(int64(len(g)))) - trolltrain.SurpriseID[int32(n.Int64())+1] = g[int32(n2.Int64())] - update["surpriseID"] = trolltrain.SurpriseID - trolltrain.Circle = circleCount - update["circle"] = trolltrain.Circle - } - - index = circleCount * trainNum // 计算火车的位置信息 - for _, v := range szTrain { - if leftTime <= v { - trolltrain.RefreshTime = configure.Now().Unix() - int64(leftTime) //trolltrain.Ctime + int64(circleCount*circletime+leftTime) - trolltrain.RangeId = (index % maxCoefficient) + 1 - trolltrain.TarinPos = (index % trainNum) + 1 - break - } - index += 1 - leftTime -= v - } - update["aiCount"] = trolltrain.AiCount - update["refreshTime"] = trolltrain.RefreshTime - update["tarinPos"] = trolltrain.TarinPos - update["rangeId"] = trolltrain.RangeId - update["shop"] = trolltrain.Shop - update["items"] = trolltrain.Items - update["price"] = trolltrain.Price - this.module.ModifyTrollData(session.GetUserId(), update) - session.SendMsg(string(this.module.GetType()), TrollGetListResp, &pb.TrollGetListResp{Data: trolltrain}) - return -} diff --git a/modules/troll/api_ranklist.go b/modules/troll/api_ranklist.go deleted file mode 100644 index ce019b799..000000000 --- a/modules/troll/api_ranklist.go +++ /dev/null @@ -1,38 +0,0 @@ -package troll - -import ( - "go_dreamfactory/comm" - "go_dreamfactory/pb" -) - -func (this *apiComp) RankListCheck(session comm.IUserSession, req *pb.TrollRankListReq) (code pb.ErrorCode) { - return -} - -func (this *apiComp) RankList(session comm.IUserSession, req *pb.TrollRankListReq) (code pb.ErrorCode, data *pb.ErrorData) { - var ( - rank []*pb.RankData - ) - list, gold, err := this.module.QueryRankList() - if err == nil { - for index, v := range list { - if user := this.module.ModuleUser.GetUser(v); user != nil { - rank = append(rank, &pb.RankData{ - RankId: int32(index + 1), - Uid: v, - Name: user.Name, - Gold: gold[index], - Figure: user.Figure, - Title: user.Title, - }) - } - - } - } - - session.SendMsg(string(this.module.GetType()), TrollRankListResp, &pb.TrollRankListResp{ - Data: rank, - }) - - return -} diff --git a/modules/troll/api_recordlist.go b/modules/troll/api_recordlist.go deleted file mode 100644 index aedb87735..000000000 --- a/modules/troll/api_recordlist.go +++ /dev/null @@ -1,20 +0,0 @@ -package troll - -import ( - "go_dreamfactory/comm" - "go_dreamfactory/pb" -) - -func (this *apiComp) RecordListCheck(session comm.IUserSession, req *pb.TrollRecordListReq) (code pb.ErrorCode) { - return -} - -func (this *apiComp) RecordList(session comm.IUserSession, req *pb.TrollRecordListReq) (code pb.ErrorCode, data *pb.ErrorData) { - - if list, err := this.module.record.GetTrollRecord(session.GetUserId()); err == nil { - session.SendMsg(string(this.module.GetType()), TrollRecordListResp, &pb.TrollRecordListResp{ - Data: list, - }) - } - return -} diff --git a/modules/troll/api_surpriseid.go b/modules/troll/api_surpriseid.go deleted file mode 100644 index 1ef84d6af..000000000 --- a/modules/troll/api_surpriseid.go +++ /dev/null @@ -1,65 +0,0 @@ -package troll - -import ( - "crypto/rand" - "go_dreamfactory/comm" - "go_dreamfactory/pb" - "go_dreamfactory/sys/configure" - "math/big" -) - -//参数校验 -func (this *apiComp) SurpriseIdCheck(session comm.IUserSession, req *pb.TrollSurpriseIdReq) (code pb.ErrorCode) { - - return -} - -func (this *apiComp) SurpriseId(session comm.IUserSession, req *pb.TrollSurpriseIdReq) (code pb.ErrorCode, data *pb.ErrorData) { - var ( - circletime int32 // 循环一个周期的时间 - circleCount int32 // 循环的次数 - update map[string]interface{} - ) - update = make(map[string]interface{}) - - trolltrain, err := this.module.modelTroll.getTrollList(session.GetUserId()) - if err != nil { - code = pb.ErrorCode_DBError - return - } - - /// 计算经过了多少个周期 - szTrain := this.configure.GetTrollAllTrain() - for _, v := range szTrain { - circletime += v - } - if int32(len(szTrain)) < trolltrain.TarinPos { - this.module.Errorf("TarinPos error: TarinPos:%d,maxLen:%d", trolltrain.TarinPos, len(szTrain)) - code = pb.ErrorCode_ConfigNoFound - return - } - if int32(configure.Now().Unix()-trolltrain.RefreshTime) >= szTrain[trolltrain.TarinPos-1] { - trainNum := this.configure.GetTrollMaxTraintNum() - - t := int32(configure.Now().Unix() - trolltrain.Ctime) - circleCount = t / circletime // 经过的周期数 - if trolltrain.Circle != circleCount { - trolltrain.SurpriseID = make(map[int32]int32, 0) - n, _ := rand.Int(rand.Reader, big.NewInt(int64(trainNum))) - // 只算当前商人所属的货物 - g := this.configure.GetTrollGoodsFor(int32(n.Int64()) + 1) - n2, _ := rand.Int(rand.Reader, big.NewInt(int64(len(g)))) - trolltrain.SurpriseID[int32(n.Int64())+1] = g[int32(n2.Int64())] - update["surpriseID"] = trolltrain.SurpriseID - trolltrain.Circle = circleCount - update["circle"] = trolltrain.Circle - this.module.ModifyTrollData(session.GetUserId(), update) - } - return - } - - session.SendMsg(string(this.module.GetType()), TrollSurpriseIdResp, &pb.TrollSurpriseIdResp{ - SurpriseID: trolltrain.SurpriseID, - }) - return -} diff --git a/modules/troll/comp_configure.go b/modules/troll/comp_configure.go deleted file mode 100644 index c69333435..000000000 --- a/modules/troll/comp_configure.go +++ /dev/null @@ -1,185 +0,0 @@ -package troll - -import ( - "go_dreamfactory/lego/core" - "go_dreamfactory/lego/sys/log" - "go_dreamfactory/modules" - "go_dreamfactory/sys/configure" - cfg "go_dreamfactory/sys/configure/structs" - "sync" -) - -const ( - game_trollgoods = "game_trollgoods.json" - game_trollcoefficient = "game_trollcoefficient.json" - game_trolltrain = "game_trolltrain.json" - game_trollrule = "game_trollrule.json" - game_trolllv = "game_trolllv.json" -) - -///配置管理基础组件 -type configureComp struct { - hlock sync.RWMutex - modules.MCompConfigure -} - -//组件初始化接口 -func (this *configureComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) { - err = this.MCompConfigure.Init(service, module, comp, options) - this.LoadConfigure(game_trollgoods, cfg.NewGameTrollGoods) - this.LoadConfigure(game_trollcoefficient, cfg.NewGameTrollCoefficient) - this.LoadConfigure(game_trolltrain, cfg.NewGameTrollTrain) - this.LoadConfigure(game_trollrule, cfg.NewGameTrollRule) - this.LoadConfigure(game_trolllv, cfg.NewGameTrollLv) - - return -} - -//加载多个配置文件 -func (this *configureComp) LoadMultiConfigure(confs map[string]interface{}) (err error) { - for k, v := range confs { - err = configure.RegisterConfigure(k, v, nil) - if err != nil { - log.Errorf("配置文件:%s解析失败!", k) - break - } - } - return -} - -//读取配置数据 -func (this *configureComp) GetConfigure(name string) (v interface{}, err error) { - return configure.GetConfigure(name) -} - -// 获取列车货物信息 -func (this *configureComp) GetTrollGoods(itemId int32) (data *cfg.GameTrollGoodsData) { - if v, err := this.GetConfigure(game_trollgoods); err == nil { - if configure, ok := v.(*cfg.GameTrollGoods); ok { - data = configure.Get(itemId) - return - } - } else { - log.Errorf("get GameTrollGoodsData conf err:%v", err) - } - return -} - -// 获取商人位置信息 -func (this *configureComp) GetTrollTrain(id int32) (data *cfg.GameTrollTrainData) { - if v, err := this.GetConfigure(game_trolltrain); err == nil { - if configure, ok := v.(*cfg.GameTrollTrain); ok { - data = configure.Get(id) - return - } - } else { - log.Errorf("get GameTrollTrainData conf err:%v", err) - } - return -} - -// 获取基本规则 -func (this *configureComp) GetTrollRule(id int32) int32 { - if v, err := this.GetConfigure(game_trollrule); err == nil { - if configure, ok := v.(*cfg.GameTrollRule); ok { - return configure.Get(id).Quantity - } - } - log.Errorf("get GetTrollRule conf err:%d", id) - - return 1 -} - -func (this *configureComp) GetTrollCoefficient(id int32) (data *cfg.GameTrollCoefficientData) { - if v, err := this.GetConfigure(game_trollcoefficient); err == nil { - if configure, ok := v.(*cfg.GameTrollCoefficient); ok { - data = configure.Get(id) - return - } - } else { - log.Errorf("get GameTrollCoefficientData conf err:%v", err) - } - return -} - -func (this *configureComp) GetTrollLv(id int32) (data *cfg.GameTrollLvData) { - if v, err := this.GetConfigure(game_trolllv); err == nil { - if configure, ok := v.(*cfg.GameTrollLv); ok { - data = configure.Get(id) - return - } - } else { - log.Errorf("get GameTrollCoefficientData conf err:%v", err) - } - return -} - -func (this *configureComp) GetTrollAllTrain() (data []int32) { - data = make([]int32, 0) - if v, err := this.GetConfigure(game_trolltrain); err == nil { - if configure, ok := v.(*cfg.GameTrollTrain); ok { - for _, v := range configure.GetDataList() { - time := v.Time - data = append(data, time) - } - return - } - } else { - log.Errorf("get GameTrollTrainData conf err:%v", err) - } - return -} - -func (this *configureComp) GetTrollMaxCoefficientNux() int32 { - if v, err := this.GetConfigure(game_trollcoefficient); err == nil { - if configure, ok := v.(*cfg.GameTrollCoefficient); ok { - - return int32(len(configure.GetDataList())) - } - } else { - log.Errorf("get GameTrollTrainData conf err:%v", err) - } - return 0 -} - -// 获取车站的数量 -func (this *configureComp) GetTrollMaxTraintNum() int32 { - if v, err := this.GetConfigure(game_trolltrain); err == nil { - if configure, ok := v.(*cfg.GameTrollTrain); ok { - - return int32(len(configure.GetDataList())) - } - } else { - log.Errorf("get GameTrollTrainData conf err:%v", err) - } - return 1 // 至少有1个车站 -} - -func (this *configureComp) GetTrollAllGoods() (data []*cfg.GameTrollGoodsData) { - if v, err := this.GetConfigure(game_trollgoods); err == nil { - if configure, ok := v.(*cfg.GameTrollGoods); ok { - data = configure.GetDataList() - return - } - } else { - log.Errorf("get GameTrollGoodsData conf err:%v", err) - } - return -} - -// 返回商人货物信息 -func (this *configureComp) GetTrollGoodsFor(trainID int32) (data []int32) { - if v, err := this.GetConfigure(game_trollgoods); err == nil { - if configure, ok := v.(*cfg.GameTrollGoods); ok { - for _, v := range configure.GetDataList() { - if v.Goodsfor == trainID { - data = append(data, v.Id) - } - } - return - } - } else { - log.Errorf("get GameTrollGoodsData conf err:%v", err) - } - return -} diff --git a/modules/troll/model_record.go b/modules/troll/model_record.go deleted file mode 100644 index 350763867..000000000 --- a/modules/troll/model_record.go +++ /dev/null @@ -1,55 +0,0 @@ -package troll - -import ( - "go_dreamfactory/comm" - "go_dreamfactory/lego/core" - "go_dreamfactory/modules" - "go_dreamfactory/pb" - "go_dreamfactory/sys/configure" - - "go.mongodb.org/mongo-driver/bson/primitive" - "go.mongodb.org/mongo-driver/mongo" - "go.mongodb.org/mongo-driver/x/bsonx" -) - -type ModelRecord struct { - modules.MCompModel - module *Troll -} - -func (this *ModelRecord) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) { - this.TableName = comm.TableTrollRecord - err = this.MCompModel.Init(service, module, comp, options) - this.module = module.(*Troll) - //创建uid索引 - this.DB.CreateIndex(core.SqlTable(comm.TableMail), mongo.IndexModel{ - Keys: bsonx.Doc{{Key: "uid", Value: bsonx.Int32(1)}}, - }) - return -} - -// 获取列表信息 -func (this *ModelRecord) GetTrollRecord(uid string) (result []*pb.DBTrollRecord, err error) { - result = make([]*pb.DBTrollRecord, 0) - if err = this.GetList(uid, &result); err != nil { - return - } - err = nil - return result, err -} - -// 添加收益列表 -func (this *ModelRecord) AddTrollRecord(uid string, gold, pos int32) (err error) { - troll := &pb.DBTrollRecord{ - Id: primitive.NewObjectID().Hex(), - Uid: uid, - Gold: gold, - Pos: pos, - Time: configure.Now().Unix(), - } - if err = this.AddList(uid, troll.Id, troll); err != nil { - this.module.Errorf("%v", err) - return - } - return -} diff --git a/modules/troll/model_troll.go b/modules/troll/model_troll.go deleted file mode 100644 index 81ae73fd6..000000000 --- a/modules/troll/model_troll.go +++ /dev/null @@ -1,65 +0,0 @@ -package troll - -import ( - "go_dreamfactory/comm" - "go_dreamfactory/lego/core" - "go_dreamfactory/lego/sys/mgo" - "go_dreamfactory/modules" - "go_dreamfactory/pb" - "go_dreamfactory/sys/configure" - - "go.mongodb.org/mongo-driver/bson/primitive" - "go.mongodb.org/mongo-driver/mongo" - "go.mongodb.org/mongo-driver/x/bsonx" -) - -type modelTroll struct { - modules.MCompModel - module *Troll -} - -func (this *modelTroll) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) { - this.TableName = string(comm.TableTroll) - err = this.MCompModel.Init(service, module, comp, options) - this.module = module.(*Troll) - // uid 创建索引 - this.DB.CreateIndex(core.SqlTable(this.TableName), mongo.IndexModel{ - Keys: bsonx.Doc{{Key: "uid", Value: bsonx.Int32(1)}}, - }) - return -} - -func (this *modelTroll) getTrollList(uid string) (result *pb.DBTrollTrain, err error) { - result = &pb.DBTrollTrain{ - Id: primitive.NewObjectID().Hex(), - Uid: uid, - Items: map[int32]int32{}, - Price: map[int32]int32{}, - GridNum: 0, - TarinPos: 1, - RangeId: 0, - Buy: 0, - Sell: 0, - NpcLv: 0, - NpcReward: map[int32]int32{}, - TotalEarn: 0, - SellCount: 0, - RefreshTime: configure.Now().Unix(), - AiCount: 0, - Shop: map[int32]int32{}, - Ctime: configure.Now().Unix(), - Circle: 0, - SurpriseID: map[int32]int32{}, - ResetTime: configure.Now().Unix(), - } - if err = this.Get(uid, result); err != nil && mgo.MongodbNil == err { - // 创建一条数据 - err = this.Add(uid, result) - return - } - err = nil - return result, err -} -func (this *modelTroll) modifyTrollDataByObjId(uid string, data map[string]interface{}) error { - return this.Change(uid, data) -} diff --git a/modules/troll/module.go b/modules/troll/module.go deleted file mode 100644 index 9d93a310e..000000000 --- a/modules/troll/module.go +++ /dev/null @@ -1,310 +0,0 @@ -/* -模块名:Troll -描述:巨怪商队 -开发:梅雄风 -*/ -package troll - -import ( - "context" - "go_dreamfactory/comm" - "go_dreamfactory/lego/core" - "go_dreamfactory/lego/sys/redis/pipe" - "go_dreamfactory/modules" - "go_dreamfactory/pb" - "go_dreamfactory/sys/configure" - "math" - - "github.com/go-redis/redis/v8" -) - -type Troll struct { - modules.ModuleBase - modelTroll *modelTroll - api *apiComp - configure *configureComp - record *ModelRecord -} - -func NewModule() core.IModule { - return &Troll{} -} - -func (this *Troll) GetType() core.M_Modules { - return comm.ModuleTroll -} - -func (this *Troll) Init(service core.IService, module core.IModule, options core.IModuleOptions) (err error) { - err = this.ModuleBase.Init(service, module, options) - - return -} - -func (this *Troll) OnInstallComp() { - this.ModuleBase.OnInstallComp() - this.api = this.RegisterComp(new(apiComp)).(*apiComp) - this.modelTroll = this.RegisterComp(new(modelTroll)).(*modelTroll) - this.configure = this.RegisterComp(new(configureComp)).(*configureComp) - this.record = this.RegisterComp(new(ModelRecord)).(*ModelRecord) -} - -// 接口信息 -func (this *Troll) ModifyTrollData(uid string, data map[string]interface{}) (code pb.ErrorCode) { - err := this.modelTroll.modifyTrollDataByObjId(uid, data) - if err != nil { - code = pb.ErrorCode_DBError - } - return -} - -func (this *Troll) TrollAI(session comm.IUserSession, troll *pb.DBTrollTrain) (code pb.ErrorCode) { - var ( - sellPrice map[int32]int32 // 出售货物价格 - totalGold int32 - index int32 - update map[string]interface{} - rangeId int32 // 增幅ID - tarinPos int32 // 火车位置 - refreshTime int64 // 刷新时间 - ) - if troll.Buy == 0 && troll.Sell == 0 { - return - } - update = make(map[string]interface{}) - sellPrice = make(map[int32]int32) - now := configure.Now().Unix() - trainNum := this.configure.GetTrollMaxTraintNum() - maxCoefficient := this.configure.GetTrollMaxCoefficientNux() // 增长幅度的最大值 - if maxCoefficient == 0 { - code = pb.ErrorCode_ConfigNoFound - return - } - rangeId = troll.RangeId - tarinPos = troll.TarinPos - refreshTime = troll.RefreshTime - - goods := this.configure.GetTrollAllGoods() - for _, v := range goods { - sellPrice[v.Id] = v.Goodsprice - } - sz := this.configure.GetTrollAllTrain() - if len(sz) == 0 { - this.Errorf("GetTrollAllTrain configure err") // 配置异常 打个日志 - return - } - iCount := this.configure.GetTrollRule(comm.TrollAIBuyCount) - for index = 0; ; index++ { - if index < tarinPos-1 { // 起始位置 - continue - } - index := int32(index) % trainNum - refreshTime += int64(sz[index]) - - if now >= refreshTime { - rangeId = (rangeId % maxCoefficient) + 1 - tarinPos = (tarinPos % trainNum) + 1 - - coefficient := this.configure.GetTrollCoefficient(rangeId) // 获取当前级别的涨幅数据 - if coefficient == nil { - return - } - if troll.Sell <= coefficient.Coefficient { // 可以出售 - var preGold int32 // 成本价 - for _, v := range goods { - sellPrice[v.Id] = v.Goodsprice * coefficient.Coefficient / 1000 - preGold += troll.Price[v.Id] * troll.Items[v.Id] - } - // 出售之前算成本 - if len(troll.Items) > 0 { - sellGold := this.SellAllItem(session.GetUserId(), troll, sellPrice, tarinPos) - if sellGold != 0 { - if code = this.ModuleUser.AddAttributeValue(session, comm.ResGold, sellGold, true); code != pb.ErrorCode_Success { - this.Errorf("玩家 uid:%s 金币不足,获得金币%d", session.GetUserId(), sellGold) - } // 一次交易完成做一次结算 - } - totalGold += sellGold - // 计算本次出售赚的金币 - if sellGold-preGold > 0 { - troll.TotalEarn += int64(sellGold - preGold) - } - this.SeTrollRankList(troll.TotalEarn, session.GetUserId()) // 设置排行数据 - - troll.AiCount++ - aiMaxCount := this.configure.GetTrollRule(comm.TrollAIBuyCount) - if troll.AiCount+troll.SellCount > aiMaxCount { //达到最大交易次数 - break - } - } - } else if troll.Buy >= coefficient.Coefficient { // 可以购买 - for _, v := range goods { - sellPrice[v.Id] = v.Goodsprice * coefficient.Coefficient / 1000 - } - troll.Shop = make(map[int32]int32) // 买之前清除购买上限 - buyGold := this.BuyAllItem(session.GetUserId(), troll, sellPrice, tarinPos) - if buyGold != 0 { - if code = this.ModuleUser.AddAttributeValue(session, comm.ResGold, buyGold, true); code != pb.ErrorCode_Success { - this.Errorf("玩家 uid:%s 金币不足,获得金币%d", session.GetUserId(), buyGold) - } - } - totalGold += buyGold - } - } else { // 超过当前时间 - refreshTime -= int64(sz[index]) - - break - } - if index > iCount*maxCoefficient { // ai挂机最大限制 - break - } - } - update["shop"] = troll.Shop - update["items"] = troll.Items - update["price"] = troll.Price - update["aiCount"] = troll.AiCount - update["gridNum"] = troll.GridNum - update["totalEarn"] = troll.TotalEarn - if confLv := this.configure.GetTrollLv(troll.GetNpcLv() + 1); confLv != nil { - if troll.TotalEarn >= int64(confLv.Money) { - troll.NpcLv += 1 // npc levelUp - update["npcLv"] = troll.NpcLv - } - } - this.ModifyTrollData(session.GetUserId(), update) - return -} - -// 出售所有货物 -func (this *Troll) SellAllItem(uid string, troll *pb.DBTrollTrain, price map[int32]int32, tarinPos int32) (gold int32) { - for k, v := range troll.Items { - if _, ok := price[k]; ok { - gold += price[k] * v - } - delete(troll.Items, k) // 清除数据 - } - troll.Price = make(map[int32]int32, 0) // 原来的价格也清除 - troll.GridNum = 0 // 清空格子 - // 写统计 - if gold != 0 { - this.record.AddTrollRecord(uid, gold, tarinPos) - } - - return -} - -// 可以购买商品 -func (this *Troll) BuyAllItem(uid string, troll *pb.DBTrollTrain, price map[int32]int32, tarinPos int32) (gold int32) { - var ( - box map[int32]int32 // 盒子 存放可购买的物品 - leftGirdNum int32 // 剩余可购买格子数量 - costGold int32 - buyBox map[int32]int32 // 盒子 存放可购买的物品 - ) - - maxGirdNum := this.configure.GetTrollRule(comm.TrollGridCount) // 获取背包最大格子数量 - maxgoods := this.configure.GetTrollRule(comm.TrollItemCount) // 获取单个物品最大上限 20个 - - leftGirdNum = maxGirdNum - troll.GridNum - box = make(map[int32]int32, 0) - buyBox = make(map[int32]int32, 0) - goods := this.configure.GetTrollAllGoods() - for _, v := range goods { - for { - if leftGirdNum > 0 && troll.Shop[v.Id] < v.Max { - leftGirdNum-- - troll.Shop[v.Id] += maxgoods - box[v.Id] += maxgoods // 加入篮子 - } else { - break - } - } - // 检查该位置的格子没有补满 - full := (troll.Items[v.Id] + box[v.Id]) % maxgoods - if full != 0 { - box[v.Id] += (maxgoods - full) // 格子补满 - } - - } - - // 通过金币来校验哪些物品可以买 - curGold := this.ModuleUser.QueryAttributeValue(uid, comm.ResGold) - for k, v := range box { - for i := 0; i < int(v); i++ { //0 1 2 3 - curGold -= int64(price[k]) - costGold -= price[k] - if curGold < 0 { - box[k] = int32(i) - costGold += price[k] // 返还之前扣的 - break - } - buyBox[k]++ - } - } - if len(buyBox) == 0 { - return // 没有可购买的直接返回 - } - for _, v := range goods { // 计算购买后的平均价格 - g := troll.Items[v.Id] * troll.Price[v.Id] - g += buyBox[v.Id] * price[v.Id] - troll.Items[v.Id] += buyBox[v.Id] - - if troll.Items[v.Id] != 0 { - troll.Price[v.Id] = g / troll.Items[v.Id] - } - - } - gold = costGold - // 统计格子 - troll.GridNum = 0 - for _, v := range troll.Items { - if v > 0 { - troll.GridNum += int32(math.Ceil(float64(v) / float64(maxgoods))) - } - } - // 写统计 - if gold != 0 { - this.record.AddTrollRecord(uid, gold, tarinPos) - } - return -} - -func (this *Troll) SeTrollRankList(gold int64, uid string) { - tableName := "trollRank" - var ( - pipe *pipe.RedisPipe = this.modelTroll.Redis.RedisPipe(context.TODO()) - menbers *redis.Z - ) - - menbers = &redis.Z{Score: float64(gold), Member: uid} - - if cmd := pipe.ZAdd(tableName, menbers); cmd != nil { - - dock, err1 := cmd.Result() - if err1 != nil { - this.Errorln(dock, err1) - } - } - if _, err := pipe.Exec(); err != nil { - this.Errorln(err) - return - } -} -func (this *Troll) QueryRankList() (ranks []string, gold []int64, err error) { - var ( - result []string - ) - tableName := "trollRank" - - if result, err = this.modelTroll.Redis.ZRevRange(tableName, 0, comm.MaxRankList).Result(); err != nil { - this.Errorln(err) - return - } - - ranks = make([]string, 0) - for i := 0; i < len(result); i++ { - if _d, err := this.modelTroll.Redis.ZScore(tableName, result[i]); err == nil { - gold = append(gold, int64(_d)) - ranks = append(ranks, result[i]) - } - } - return -} diff --git a/pb/comm.pb.go b/pb/comm.pb.go index 7121c6bc3..3a34a602d 100644 --- a/pb/comm.pb.go +++ b/pb/comm.pb.go @@ -154,12 +154,13 @@ type UserMessage struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - MainType string `protobuf:"bytes,1,opt,name=MainType,proto3" json:"MainType"` //用户消息处理 模块名 例如:user 对应项目中 user的模块 - SubType string `protobuf:"bytes,2,opt,name=SubType,proto3" json:"SubType"` //用户消息处理函数名 例如:login 对应项目中 user的模块中 + MsgId uint32 `protobuf:"varint,1,opt,name=MsgId,proto3" json:"MsgId"` //消息id 客户端标记 + MainType string `protobuf:"bytes,2,opt,name=MainType,proto3" json:"MainType"` //用户消息处理 模块名 例如:user 对应项目中 user的模块 + SubType string `protobuf:"bytes,3,opt,name=SubType,proto3" json:"SubType"` //用户消息处理函数名 例如:login 对应项目中 user的模块中 // api_login 的处理函数 - ServicePath string `protobuf:"bytes,3,opt,name=servicePath,proto3" json:"servicePath"` // 消息路由地址 部分消息前端确定转发给谁 \worker\worker0 - Data *anypb.Any `protobuf:"bytes,4,opt,name=data,proto3" json:"data"` - Sec string `protobuf:"bytes,5,opt,name=sec,proto3" json:"sec"` //密文 + ServicePath string `protobuf:"bytes,4,opt,name=servicePath,proto3" json:"servicePath"` // 消息路由地址 部分消息前端确定转发给谁 \worker\worker0 + Data *anypb.Any `protobuf:"bytes,5,opt,name=data,proto3" json:"data"` + Sec string `protobuf:"bytes,6,opt,name=sec,proto3" json:"sec"` //密文 } func (x *UserMessage) Reset() { @@ -194,6 +195,13 @@ func (*UserMessage) Descriptor() ([]byte, []int) { return file_comm_proto_rawDescGZIP(), []int{1} } +func (x *UserMessage) GetMsgId() uint32 { + if x != nil { + return x.MsgId + } + return 0 +} + func (x *UserMessage) GetMainType() string { if x != nil { return x.MainType @@ -1938,197 +1946,198 @@ var file_comm_proto_rawDesc = []byte{ 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, - 0xa1, 0x01, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, - 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x53, - 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x53, 0x75, - 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x50, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, - 0x61, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, - 0x73, 0x65, 0x63, 0x22, 0x8e, 0x02, 0x0a, 0x0c, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x02, 0x49, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, - 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, - 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, - 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, - 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, - 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x47, 0x61, - 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1a, - 0x0a, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x75, - 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x53, 0x75, 0x62, - 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, - 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x07, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x22, 0xa3, 0x01, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x4d, 0x65, 0x73, 0x73, - 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, - 0x64, 0x65, 0x52, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x45, 0x72, 0x72, 0x6f, - 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, - 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x28, 0x0a, 0x09, - 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x09, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 0x22, 0x0a, 0x05, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x18, - 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, - 0x61, 0x67, 0x65, 0x52, 0x05, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x69, 0x0a, 0x0d, 0x41, 0x67, - 0x65, 0x6e, 0x74, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x55, + 0xb7, 0x01, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, + 0x14, 0x0a, 0x05, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, + 0x4d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, + 0x65, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x28, 0x0a, + 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, + 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x63, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x65, 0x63, 0x22, 0x8e, 0x02, 0x0a, 0x0c, 0x41, 0x67, + 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, + 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, + 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, + 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, + 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, + 0x12, 0x18, 0x0a, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x07, 0x4d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, + 0x79, 0x52, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xa3, 0x01, 0x0a, 0x0f, 0x52, + 0x50, 0x43, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, + 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x45, + 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, + 0x0a, 0x0c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x12, 0x28, 0x0a, 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x61, 0x74, 0x61, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x61, 0x74, + 0x61, 0x52, 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 0x22, 0x0a, 0x05, + 0x52, 0x65, 0x70, 0x6c, 0x79, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x52, 0x65, 0x70, 0x6c, 0x79, + 0x22, 0x69, 0x0a, 0x0d, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, + 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, + 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, + 0x1a, 0x0a, 0x08, 0x57, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x08, 0x57, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x0f, 0x41, + 0x67, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x12, 0x24, + 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x13, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x6e, + 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, - 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x57, 0x6f, 0x72, - 0x6b, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x57, 0x6f, 0x72, - 0x6b, 0x65, 0x72, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x0f, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x55, 0x6e, - 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, - 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x5f, - 0x0a, 0x13, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, - 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x05, 0x52, - 0x65, 0x70, 0x6c, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x55, 0x73, 0x65, - 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, - 0x99, 0x01, 0x0a, 0x0f, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x52, 0x65, 0x71, 0x12, 0x26, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, - 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x55, 0x73, 0x65, - 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x4d, - 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4d, - 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, - 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, - 0x65, 0x12, 0x28, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x04, 0x44, 0x61, 0x74, 0x61, 0x22, 0x75, 0x0a, 0x13, 0x42, - 0x72, 0x6f, 0x61, 0x64, 0x43, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, - 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, - 0x0a, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x04, 0x44, 0x61, - 0x74, 0x61, 0x22, 0x36, 0x0a, 0x0e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x6c, 0x6f, 0x73, 0x65, - 0x65, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, - 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, - 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0xae, 0x01, 0x0a, 0x12, 0x4e, - 0x6f, 0x74, 0x69, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, - 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, - 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, - 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, - 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, - 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x12, - 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, - 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x22, 0xaf, 0x01, 0x0a, 0x13, - 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x02, 0x49, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, - 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, - 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, - 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, - 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, - 0x67, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x47, 0x61, 0x74, - 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x22, 0xae, 0x01, - 0x0a, 0x12, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x6c, 0x6f, 0x73, - 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x02, 0x49, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, - 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, - 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, - 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, - 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, - 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x47, 0x61, - 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x22, 0x3f, - 0x0a, 0x09, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x73, - 0x6b, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x73, 0x6b, - 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x4c, 0x76, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x4c, 0x76, 0x22, - 0x36, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x0c, 0x0a, - 0x01, 0x41, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x41, 0x12, 0x0c, 0x0a, 0x01, 0x54, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x54, 0x12, 0x0c, 0x0a, 0x01, 0x4e, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x4e, 0x22, 0x42, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x41, - 0x74, 0x6e, 0x6f, 0x12, 0x0c, 0x0a, 0x01, 0x41, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, + 0x64, 0x12, 0x22, 0x0a, 0x05, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x0c, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, + 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x99, 0x01, 0x0a, 0x0f, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4d, + 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x26, 0x0a, 0x0e, 0x55, 0x73, 0x65, + 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, + 0x09, 0x52, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, + 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x08, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, + 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, + 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x04, 0x44, 0x61, 0x74, + 0x61, 0x22, 0x75, 0x0a, 0x13, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x43, 0x61, 0x73, 0x74, 0x4d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x69, 0x6e, + 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4d, 0x61, 0x69, 0x6e, + 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, + 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, + 0x6e, 0x79, 0x52, 0x04, 0x44, 0x61, 0x74, 0x61, 0x22, 0x36, 0x0a, 0x0e, 0x41, 0x67, 0x65, 0x6e, + 0x74, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x65, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, + 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, + 0x22, 0xae, 0x01, 0x0a, 0x12, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, + 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, + 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, + 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, + 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x54, 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, + 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, + 0x64, 0x22, 0xaf, 0x01, 0x0a, 0x13, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, 0x65, + 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, + 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, + 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x49, 0x64, 0x22, 0xae, 0x01, 0x0a, 0x12, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x55, 0x73, + 0x65, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x70, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73, + 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, + 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65, + 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x10, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x49, 0x64, 0x22, 0x3f, 0x0a, 0x09, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x44, 0x61, 0x74, + 0x61, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x07, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x73, + 0x6b, 0x69, 0x6c, 0x6c, 0x4c, 0x76, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x73, 0x6b, + 0x69, 0x6c, 0x6c, 0x4c, 0x76, 0x22, 0x36, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x73, 0x73, + 0x65, 0x74, 0x73, 0x12, 0x0c, 0x0a, 0x01, 0x41, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x41, 0x12, 0x0c, 0x0a, 0x01, 0x54, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x54, 0x12, - 0x0c, 0x0a, 0x01, 0x4e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x4e, 0x12, 0x0c, 0x0a, - 0x01, 0x4f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x4f, 0x22, 0x39, 0x0a, 0x09, 0x54, - 0x61, 0x73, 0x6b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x72, 0x73, - 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x12, 0x16, - 0x0a, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, - 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0x54, 0x0a, 0x0a, 0x52, 0x74, 0x61, 0x73, 0x6b, 0x50, - 0x61, 0x72, 0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, - 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, - 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x22, 0x1a, 0x0a, 0x06, - 0x55, 0x49, 0x64, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x1d, 0x0a, 0x07, 0x4e, 0x61, 0x6d, 0x65, - 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x0a, 0x0a, 0x08, 0x45, 0x6d, 0x70, 0x74, 0x79, - 0x52, 0x65, 0x71, 0x22, 0x0b, 0x0a, 0x09, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, - 0x22, 0x29, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, - 0x71, 0x41, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x22, 0x41, 0x0a, 0x0f, 0x52, - 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x32, 0x12, 0x16, - 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, - 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x22, 0x59, - 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, - 0x33, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, - 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, - 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x22, 0x71, 0x0a, 0x0f, 0x52, 0x50, 0x43, - 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x34, 0x12, 0x16, 0x0a, 0x06, - 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, - 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, - 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, - 0x72, 0x61, 0x6d, 0x33, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x34, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x34, 0x22, 0x51, 0x0a, 0x0b, - 0x52, 0x50, 0x43, 0x52, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, - 0x08, 0x74, 0x61, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x08, 0x74, 0x61, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x72, - 0x61, 0x6d, 0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x22, - 0xa1, 0x03, 0x0a, 0x0d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x44, 0x42, 0x49, 0x6e, 0x66, - 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x69, 0x64, 0x12, 0x1e, 0x0a, - 0x0a, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0a, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, - 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, - 0x6e, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72, 0x6f, - 0x73, 0x73, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x72, 0x6f, 0x73, - 0x73, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x73, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x69, 0x6e, 0x67, 0x6c, - 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x74, - 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x74, - 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x72, 0x65, 0x64, 0x69, 0x73, 0x49, 0x73, 0x43, 0x6c, - 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x72, 0x65, 0x64, - 0x69, 0x73, 0x49, 0x73, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x72, - 0x65, 0x64, 0x69, 0x73, 0x41, 0x64, 0x64, 0x72, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, - 0x72, 0x65, 0x64, 0x69, 0x73, 0x41, 0x64, 0x64, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x64, - 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0d, 0x72, 0x65, 0x64, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, - 0x18, 0x0a, 0x07, 0x72, 0x65, 0x64, 0x69, 0x73, 0x44, 0x62, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x07, 0x72, 0x65, 0x64, 0x69, 0x73, 0x44, 0x62, 0x12, 0x1e, 0x0a, 0x0a, 0x4d, 0x6f, 0x6e, - 0x67, 0x6f, 0x64, 0x62, 0x55, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x4d, - 0x6f, 0x6e, 0x67, 0x6f, 0x64, 0x62, 0x55, 0x72, 0x6c, 0x12, 0x28, 0x0a, 0x0f, 0x6d, 0x6f, 0x6e, - 0x67, 0x6f, 0x64, 0x62, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x18, 0x0d, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0f, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0x64, 0x62, 0x44, 0x61, 0x74, 0x61, 0x62, - 0x61, 0x73, 0x65, 0x2a, 0x43, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f, 0x41, 0x74, 0x74, 0x72, 0x69, - 0x62, 0x75, 0x74, 0x65, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x48, 0x70, 0x10, - 0x00, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x74, 0x6b, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x44, 0x65, - 0x66, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x70, 0x65, 0x65, 0x64, 0x10, 0x03, 0x12, 0x08, - 0x0a, 0x04, 0x43, 0x72, 0x69, 0x74, 0x10, 0x04, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x0c, 0x0a, 0x01, 0x4e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x4e, 0x22, 0x42, 0x0a, + 0x08, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x12, 0x0c, 0x0a, 0x01, 0x41, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x41, 0x12, 0x0c, 0x0a, 0x01, 0x54, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x01, 0x54, 0x12, 0x0c, 0x0a, 0x01, 0x4e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x01, 0x4e, 0x12, 0x0c, 0x0a, 0x01, 0x4f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, + 0x4f, 0x22, 0x39, 0x0a, 0x09, 0x54, 0x61, 0x73, 0x6b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, + 0x0a, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x66, + 0x69, 0x72, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0x54, 0x0a, 0x0a, + 0x52, 0x74, 0x61, 0x73, 0x6b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, + 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, + 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x33, 0x22, 0x1a, 0x0a, 0x06, 0x55, 0x49, 0x64, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, + 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x1d, + 0x0a, 0x07, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x0a, 0x0a, + 0x08, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x52, 0x65, 0x71, 0x22, 0x0b, 0x0a, 0x09, 0x45, 0x6d, 0x70, + 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x22, 0x29, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, + 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x31, 0x22, 0x41, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, + 0x65, 0x71, 0x41, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, + 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, + 0x72, 0x61, 0x6d, 0x32, 0x22, 0x59, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x33, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, + 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x22, + 0x71, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, + 0x41, 0x34, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, + 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, + 0x72, 0x61, 0x6d, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x34, 0x22, 0x51, 0x0a, 0x0b, 0x52, 0x50, 0x43, 0x52, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, + 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, + 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x61, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x74, 0x61, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x14, 0x0a, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x05, + 0x70, 0x61, 0x72, 0x61, 0x6d, 0x22, 0xa1, 0x03, 0x0a, 0x0d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x44, 0x42, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4e, + 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x72, 0x6f, + 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x12, + 0x18, 0x0a, 0x07, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x07, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x69, 0x6e, + 0x67, 0x6c, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0c, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x1a, 0x0a, + 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, + 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x72, 0x65, 0x64, + 0x69, 0x73, 0x49, 0x73, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x0e, 0x72, 0x65, 0x64, 0x69, 0x73, 0x49, 0x73, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, + 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x64, 0x69, 0x73, 0x41, 0x64, 0x64, 0x72, 0x18, 0x09, + 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x64, 0x69, 0x73, 0x41, 0x64, 0x64, 0x72, 0x12, + 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x64, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, + 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x64, 0x69, 0x73, 0x50, 0x61, 0x73, + 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x64, 0x69, 0x73, 0x44, 0x62, + 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x64, 0x69, 0x73, 0x44, 0x62, 0x12, + 0x1e, 0x0a, 0x0a, 0x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x64, 0x62, 0x55, 0x72, 0x6c, 0x18, 0x0c, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0a, 0x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x64, 0x62, 0x55, 0x72, 0x6c, 0x12, + 0x28, 0x0a, 0x0f, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0x64, 0x62, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, + 0x73, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0x64, + 0x62, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x2a, 0x43, 0x0a, 0x12, 0x48, 0x65, 0x72, + 0x6f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x06, 0x0a, 0x02, 0x48, 0x70, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x74, 0x6b, 0x10, 0x01, + 0x12, 0x07, 0x0a, 0x03, 0x44, 0x65, 0x66, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x70, 0x65, + 0x65, 0x64, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x43, 0x72, 0x69, 0x74, 0x10, 0x04, 0x42, 0x06, + 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pb/notify_msg.pb.go b/pb/notify_msg.pb.go index 2254865ac..2b0edaa39 100644 --- a/pb/notify_msg.pb.go +++ b/pb/notify_msg.pb.go @@ -27,12 +27,13 @@ type NotifyErrorNotifyPush struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - ReqMainType string `protobuf:"bytes,1,opt,name=ReqMainType,proto3" json:"ReqMainType"` // 请求协议模块 模块名 例如:user 对应项目中 user的模块 - ReqSubType string `protobuf:"bytes,2,opt,name=ReqSubType,proto3" json:"ReqSubType"` // 请求协议函数 例如:login 对应项目中 user的模块中 + MsgId uint32 `protobuf:"varint,1,opt,name=MsgId,proto3" json:"MsgId"` //消息id 客户端标记 + ReqMainType string `protobuf:"bytes,2,opt,name=ReqMainType,proto3" json:"ReqMainType"` // 请求协议模块 模块名 例如:user 对应项目中 user的模块 + ReqSubType string `protobuf:"bytes,3,opt,name=ReqSubType,proto3" json:"ReqSubType"` // 请求协议函数 例如:login 对应项目中 user的模块中 // api_login 的处理函数 - Code ErrorCode `protobuf:"varint,3,opt,name=Code,proto3,enum=ErrorCode" json:"Code"` // 执行返回错误码 对应 errorcode.proto 枚举 - Arg *anypb.Any `protobuf:"bytes,4,opt,name=arg,proto3" json:"arg"` //参数信息 - Err *ErrorData `protobuf:"bytes,5,opt,name=err,proto3" json:"err"` //错误数据 + Code ErrorCode `protobuf:"varint,4,opt,name=Code,proto3,enum=ErrorCode" json:"Code"` // 执行返回错误码 对应 errorcode.proto 枚举 + Arg *anypb.Any `protobuf:"bytes,5,opt,name=arg,proto3" json:"arg"` //参数信息 + Err *ErrorData `protobuf:"bytes,6,opt,name=err,proto3" json:"err"` //错误数据 } func (x *NotifyErrorNotifyPush) Reset() { @@ -67,6 +68,13 @@ func (*NotifyErrorNotifyPush) Descriptor() ([]byte, []int) { return file_notify_notify_msg_proto_rawDescGZIP(), []int{0} } +func (x *NotifyErrorNotifyPush) GetMsgId() uint32 { + if x != nil { + return x.MsgId + } + return 0 +} + func (x *NotifyErrorNotifyPush) GetReqMainType() string { if x != nil { return x.ReqMainType @@ -206,28 +214,29 @@ var file_notify_notify_msg_proto_rawDesc = []byte{ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, - 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xbf, 0x01, 0x0a, 0x15, 0x4e, 0x6f, + 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd5, 0x01, 0x0a, 0x15, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x50, - 0x75, 0x73, 0x68, 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, 0x71, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, - 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x52, 0x65, 0x71, 0x4d, 0x61, 0x69, - 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x71, 0x53, 0x75, 0x62, 0x54, - 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x52, 0x65, 0x71, 0x53, 0x75, - 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, - 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x03, 0x61, 0x72, 0x67, 0x18, 0x04, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x03, 0x61, 0x72, 0x67, 0x12, 0x1c, 0x0a, - 0x03, 0x65, 0x72, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x03, 0x65, 0x72, 0x72, 0x22, 0x12, 0x0a, 0x10, 0x4e, - 0x6f, 0x74, 0x69, 0x66, 0x79, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x22, - 0x66, 0x0a, 0x11, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x73, 0x74, - 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, - 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x4c, 0x61, 0x73, 0x74, - 0x52, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x09, 0x53, 0x79, 0x73, 0x4e, - 0x6f, 0x74, 0x69, 0x66, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x44, 0x42, - 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x52, 0x09, 0x53, 0x79, - 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, - 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x75, 0x73, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0d, 0x52, 0x05, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, 0x71, + 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, + 0x52, 0x65, 0x71, 0x4d, 0x61, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x52, + 0x65, 0x71, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0a, 0x52, 0x65, 0x71, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x43, + 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x03, 0x61, + 0x72, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x03, + 0x61, 0x72, 0x67, 0x12, 0x1c, 0x0a, 0x03, 0x65, 0x72, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x03, 0x65, 0x72, + 0x72, 0x22, 0x12, 0x0a, 0x10, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x47, 0x65, 0x74, 0x4c, 0x69, + 0x73, 0x74, 0x52, 0x65, 0x71, 0x22, 0x66, 0x0a, 0x11, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x47, + 0x65, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, + 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, + 0x52, 0x0c, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2d, + 0x0a, 0x09, 0x53, 0x79, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x0f, 0x2e, 0x44, 0x42, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x74, 0x69, + 0x66, 0x79, 0x52, 0x09, 0x53, 0x79, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x42, 0x06, 0x5a, + 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pb/user_msg.pb.go b/pb/user_msg.pb.go index 99508ddc5..e39b0e302 100644 --- a/pb/user_msg.pb.go +++ b/pb/user_msg.pb.go @@ -568,9 +568,6 @@ type UserCreateResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - - IsSucc bool `protobuf:"varint,1,opt,name=IsSucc,proto3" json:"IsSucc"` - Code ErrorCode `protobuf:"varint,2,opt,name=code,proto3,enum=ErrorCode" json:"code"` } func (x *UserCreateResp) Reset() { @@ -605,20 +602,6 @@ func (*UserCreateResp) Descriptor() ([]byte, []int) { return file_user_user_msg_proto_rawDescGZIP(), []int{10} } -func (x *UserCreateResp) GetIsSucc() bool { - if x != nil { - return x.IsSucc - } - return false -} - -func (x *UserCreateResp) GetCode() ErrorCode { - if x != nil { - return x.Code - } - return ErrorCode_Success -} - // 玩家资源变更推送 type UserResChangedPush struct { state protoimpl.MessageState @@ -3105,199 +3088,195 @@ var file_user_user_msg_proto_rawDesc = []byte{ 0x52, 0x08, 0x4e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x48, 0x0a, 0x0e, 0x55, 0x73, - 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, - 0x49, 0x73, 0x53, 0x75, 0x63, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x49, 0x73, - 0x53, 0x75, 0x63, 0x63, 0x12, 0x1e, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, - 0x63, 0x6f, 0x64, 0x65, 0x22, 0x96, 0x03, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, - 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x67, - 0x6f, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x67, 0x6f, 0x6c, 0x64, 0x12, - 0x10, 0x0a, 0x03, 0x65, 0x78, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x65, 0x78, - 0x70, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x69, 0x70, 0x65, 0x78, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x03, 0x52, 0x06, 0x76, 0x69, 0x70, 0x65, 0x78, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x69, 0x61, - 0x6d, 0x6f, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x64, 0x69, 0x61, 0x6d, - 0x6f, 0x6e, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x18, 0x05, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, - 0x74, 0x61, 0x72, 0x63, 0x6f, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, - 0x74, 0x61, 0x72, 0x63, 0x6f, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x75, 0x69, 0x6c, 0x64, - 0x63, 0x6f, 0x69, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x67, 0x75, 0x69, 0x6c, - 0x64, 0x63, 0x6f, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x72, 0x65, 0x6e, 0x61, 0x63, 0x6f, - 0x69, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x61, 0x72, 0x65, 0x6e, 0x61, 0x63, - 0x6f, 0x69, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x70, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x02, 0x70, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x6f, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x64, 0x18, - 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6d, 0x6f, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x64, 0x12, - 0x18, 0x0a, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x31, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x31, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x6c, - 0x65, 0x6e, 0x74, 0x32, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x61, 0x6c, 0x65, - 0x6e, 0x74, 0x32, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x33, 0x18, 0x0d, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x33, 0x12, 0x18, 0x0a, - 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x34, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, - 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x34, 0x12, 0x24, 0x0a, 0x0d, 0x6d, 0x65, 0x72, 0x63, 0x68, - 0x61, 0x6e, 0x74, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, - 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x22, 0x2a, 0x0a, - 0x16, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x54, 0x65, 0x72, 0x6d, 0x4c, 0x6f, - 0x67, 0x69, 0x6e, 0x50, 0x75, 0x73, 0x68, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x23, 0x0a, 0x11, 0x55, 0x73, 0x65, - 0x72, 0x50, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12, 0x0e, - 0x0a, 0x02, 0x70, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x70, 0x73, 0x22, 0x13, - 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x52, 0x65, 0x71, 0x22, 0x3e, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28, 0x0a, 0x07, 0x73, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x42, 0x55, - 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x07, 0x73, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x22, 0x40, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, - 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x28, 0x0a, 0x07, 0x73, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, - 0x42, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x07, 0x73, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x29, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, + 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x10, 0x0a, 0x0e, 0x55, 0x73, + 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x22, 0x96, 0x03, 0x0a, + 0x12, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x50, + 0x75, 0x73, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x67, 0x6f, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x03, 0x52, 0x04, 0x67, 0x6f, 0x6c, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x70, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x65, 0x78, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x69, 0x70, + 0x65, 0x78, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x76, 0x69, 0x70, 0x65, 0x78, + 0x70, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x69, 0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x03, 0x52, 0x07, 0x64, 0x69, 0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x66, + 0x72, 0x69, 0x65, 0x6e, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x72, 0x69, + 0x65, 0x6e, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x74, 0x61, 0x72, 0x63, 0x6f, 0x69, 0x6e, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x74, 0x61, 0x72, 0x63, 0x6f, 0x69, 0x6e, 0x12, + 0x1c, 0x0a, 0x09, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x63, 0x6f, 0x69, 0x6e, 0x18, 0x07, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x09, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x63, 0x6f, 0x69, 0x6e, 0x12, 0x1c, 0x0a, + 0x09, 0x61, 0x72, 0x65, 0x6e, 0x61, 0x63, 0x6f, 0x69, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x09, 0x61, 0x72, 0x65, 0x6e, 0x61, 0x63, 0x6f, 0x69, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x70, + 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x70, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6d, + 0x6f, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6d, + 0x6f, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, + 0x74, 0x31, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, + 0x31, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x32, 0x18, 0x0c, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x32, 0x12, 0x18, 0x0a, 0x07, 0x74, + 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x33, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x61, + 0x6c, 0x65, 0x6e, 0x74, 0x33, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x34, + 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x34, 0x12, + 0x24, 0x0a, 0x0d, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x6d, 0x6f, 0x6e, 0x65, 0x79, + 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, + 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x22, 0x2a, 0x0a, 0x16, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x74, 0x68, + 0x65, 0x72, 0x54, 0x65, 0x72, 0x6d, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x75, 0x73, 0x68, 0x12, + 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, + 0x64, 0x22, 0x23, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x50, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, + 0x65, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12, 0x0e, 0x0a, 0x02, 0x70, 0x73, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x02, 0x70, 0x73, 0x22, 0x13, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, + 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x22, 0x3e, 0x0a, 0x12, 0x55, + 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, + 0x70, 0x12, 0x28, 0x0a, 0x07, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x42, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x52, 0x07, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x40, 0x0a, 0x14, 0x55, + 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x52, 0x65, 0x71, 0x12, 0x28, 0x0a, 0x07, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x42, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, + 0x74, 0x69, 0x6e, 0x67, 0x52, 0x07, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x29, 0x0a, + 0x15, 0x55, 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x11, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, + 0x56, 0x65, 0x72, 0x69, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x22, 0x26, 0x0a, 0x10, 0x55, + 0x73, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, + 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, + 0x6f, 0x64, 0x65, 0x22, 0x25, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x69, 0x74, 0x64, + 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x24, 0x0a, 0x10, 0x55, 0x73, + 0x65, 0x72, 0x49, 0x6e, 0x69, 0x74, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, - 0x22, 0x11, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x43, 0x6f, 0x64, 0x65, - 0x52, 0x65, 0x71, 0x22, 0x26, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x43, - 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x25, 0x0a, 0x0f, 0x55, - 0x73, 0x65, 0x72, 0x49, 0x6e, 0x69, 0x74, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12, 0x12, - 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, - 0x64, 0x65, 0x22, 0x24, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x69, 0x74, 0x64, 0x61, - 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x27, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, - 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x22, 0x70, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x6e, - 0x61, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, - 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, - 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x0e, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x63, - 0x6f, 0x64, 0x65, 0x22, 0x31, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, - 0x79, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x76, - 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x76, - 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x22, 0x44, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, - 0x64, 0x69, 0x66, 0x79, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, - 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, - 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x22, 0x28, 0x0a, 0x10, - 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x62, 0x67, 0x70, 0x52, 0x65, 0x71, - 0x12, 0x14, 0x0a, 0x05, 0x62, 0x67, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x62, 0x67, 0x70, 0x49, 0x64, 0x22, 0x3b, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, - 0x64, 0x69, 0x66, 0x79, 0x62, 0x67, 0x70, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x14, 0x0a, - 0x05, 0x62, 0x67, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x62, 0x67, - 0x70, 0x49, 0x64, 0x22, 0x31, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, - 0x79, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, - 0x67, 0x75, 0x72, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x69, - 0x67, 0x75, 0x72, 0x65, 0x49, 0x64, 0x22, 0x44, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, - 0x64, 0x69, 0x66, 0x79, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, - 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, - 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x08, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x49, 0x64, 0x22, 0x12, 0x0a, 0x10, - 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x54, 0x75, 0x6a, 0x69, 0x61, 0x6e, 0x52, 0x65, 0x71, - 0x22, 0x2d, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x54, 0x75, 0x6a, 0x69, 0x61, - 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x73, - 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x73, 0x22, - 0x47, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x76, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, - 0x50, 0x75, 0x73, 0x68, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x70, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x03, 0x52, 0x03, 0x65, 0x78, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x6c, 0x76, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x6c, 0x76, 0x22, 0x54, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, - 0x56, 0x69, 0x70, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12, 0x10, - 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, - 0x12, 0x16, 0x0a, 0x06, 0x76, 0x69, 0x70, 0x45, 0x78, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, - 0x52, 0x06, 0x76, 0x69, 0x70, 0x45, 0x78, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x69, 0x70, 0x4c, - 0x76, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x69, 0x70, 0x4c, 0x76, 0x22, 0x27, - 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x73, 0x69, 0x67, 0x6e, - 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x28, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x4d, - 0x6f, 0x64, 0x69, 0x66, 0x79, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, - 0x04, 0x73, 0x69, 0x67, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, - 0x6e, 0x22, 0x27, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, - 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0xf0, 0x01, 0x0a, 0x14, 0x55, - 0x73, 0x65, 0x72, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, - 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, - 0x12, 0x1d, 0x0a, 0x02, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, - 0x42, 0x55, 0x73, 0x65, 0x72, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x52, 0x02, 0x65, 0x78, 0x12, - 0x33, 0x0a, 0x0c, 0x70, 0x61, 0x67, 0x6f, 0x64, 0x61, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x67, 0x6f, 0x64, 0x61, - 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x0c, 0x70, 0x61, 0x67, 0x6f, 0x64, 0x61, 0x52, 0x65, - 0x63, 0x6f, 0x72, 0x64, 0x12, 0x34, 0x0a, 0x0d, 0x68, 0x75, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x52, - 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x42, - 0x48, 0x75, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x61, 0x6e, 0x6b, 0x52, 0x0d, 0x68, 0x75, 0x6e, - 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x31, 0x0a, 0x0c, 0x76, 0x69, - 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x56, 0x69, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x61, 0x6e, 0x6b, 0x52, - 0x0c, 0x76, 0x69, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x22, 0x34, 0x0a, - 0x12, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x74, 0x65, 0x61, 0x6d, - 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x64, - 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, - 0x49, 0x64, 0x73, 0x22, 0x27, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x74, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x11, 0x0a, 0x0f, - 0x55, 0x73, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x77, 0x74, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x22, - 0x32, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x77, 0x74, 0x65, 0x61, 0x6d, 0x52, - 0x65, 0x73, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x64, - 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, - 0x49, 0x64, 0x73, 0x22, 0x32, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, - 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x20, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x01, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x43, 0x61, 0x63, 0x68, 0x65, 0x55, 0x73, 0x65, 0x72, - 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x22, 0x31, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x44, - 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x05, 0x75, - 0x73, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x55, - 0x73, 0x65, 0x72, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x22, 0x16, 0x0a, 0x14, 0x55, 0x73, + 0x22, 0x27, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x6e, 0x61, + 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x70, 0x0a, 0x12, 0x55, 0x73, 0x65, + 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, + 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, + 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, + 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x63, + 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x31, 0x0a, 0x13, 0x55, + 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, + 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x22, 0x44, + 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x61, 0x76, 0x61, 0x74, + 0x61, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x76, 0x61, 0x74, + 0x61, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x76, 0x61, 0x74, + 0x61, 0x72, 0x49, 0x64, 0x22, 0x28, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, + 0x66, 0x79, 0x62, 0x67, 0x70, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x67, 0x70, 0x49, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x62, 0x67, 0x70, 0x49, 0x64, 0x22, 0x3b, + 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x62, 0x67, 0x70, 0x52, + 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x67, 0x70, 0x49, 0x64, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x62, 0x67, 0x70, 0x49, 0x64, 0x22, 0x31, 0x0a, 0x13, 0x55, + 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, + 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x49, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x49, 0x64, 0x22, 0x44, + 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x66, 0x69, 0x67, 0x75, + 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x67, 0x75, + 0x72, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x69, 0x67, 0x75, + 0x72, 0x65, 0x49, 0x64, 0x22, 0x12, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x54, + 0x75, 0x6a, 0x69, 0x61, 0x6e, 0x52, 0x65, 0x71, 0x22, 0x2d, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, + 0x47, 0x65, 0x74, 0x54, 0x75, 0x6a, 0x69, 0x61, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x18, 0x0a, + 0x07, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, + 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x73, 0x22, 0x47, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x76, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12, 0x10, 0x0a, 0x03, + 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x10, + 0x0a, 0x03, 0x65, 0x78, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x65, 0x78, 0x70, + 0x12, 0x0e, 0x0a, 0x02, 0x6c, 0x76, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x6c, 0x76, + 0x22, 0x54, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x43, 0x68, 0x61, 0x6e, 0x67, + 0x65, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x69, 0x70, 0x45, + 0x78, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x76, 0x69, 0x70, 0x45, 0x78, 0x70, + 0x12, 0x14, 0x0a, 0x05, 0x76, 0x69, 0x70, 0x4c, 0x76, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x05, 0x76, 0x69, 0x70, 0x4c, 0x76, 0x22, 0x27, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, + 0x64, 0x69, 0x66, 0x79, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x73, + 0x69, 0x67, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, + 0x28, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x73, 0x69, 0x67, + 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x27, 0x0a, 0x13, 0x55, 0x73, 0x65, + 0x72, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, + 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, + 0x69, 0x64, 0x22, 0xf0, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x74, 0x74, 0x6c, + 0x65, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x04, 0x64, + 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x55, 0x73, + 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x02, 0x65, 0x78, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x55, 0x73, 0x65, 0x72, 0x45, 0x78, 0x70, + 0x61, 0x6e, 0x64, 0x52, 0x02, 0x65, 0x78, 0x12, 0x33, 0x0a, 0x0c, 0x70, 0x61, 0x67, 0x6f, 0x64, + 0x61, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, + 0x44, 0x42, 0x50, 0x61, 0x67, 0x6f, 0x64, 0x61, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x0c, + 0x70, 0x61, 0x67, 0x6f, 0x64, 0x61, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x34, 0x0a, 0x0d, + 0x68, 0x75, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x04, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x42, 0x48, 0x75, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x52, + 0x61, 0x6e, 0x6b, 0x52, 0x0d, 0x68, 0x75, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x63, 0x6f, + 0x72, 0x64, 0x12, 0x31, 0x0a, 0x0c, 0x76, 0x69, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x63, 0x6f, + 0x72, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x56, 0x69, 0x6b, + 0x69, 0x6e, 0x67, 0x52, 0x61, 0x6e, 0x6b, 0x52, 0x0c, 0x76, 0x69, 0x6b, 0x69, 0x6e, 0x67, 0x52, + 0x65, 0x63, 0x6f, 0x72, 0x64, 0x22, 0x34, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, + 0x74, 0x69, 0x6e, 0x67, 0x74, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x68, + 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, + 0x0a, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x64, 0x73, 0x22, 0x27, 0x0a, 0x13, 0x55, + 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x74, 0x65, 0x61, 0x6d, 0x52, 0x65, + 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x03, 0x75, 0x69, 0x64, 0x22, 0x11, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x77, + 0x74, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x22, 0x32, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, + 0x68, 0x6f, 0x77, 0x74, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x68, + 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, + 0x0a, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x64, 0x73, 0x22, 0x32, 0x0a, 0x0e, 0x55, + 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x20, 0x0a, + 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x43, + 0x61, 0x63, 0x68, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x22, + 0x31, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, + 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, + 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x55, 0x73, 0x65, 0x72, 0x52, 0x05, 0x75, 0x73, 0x65, + 0x72, 0x73, 0x22, 0x16, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x22, 0x3a, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, - 0x65, 0x71, 0x22, 0x3a, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x64, - 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x0d, - 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x22, 0x2b, 0x0a, - 0x0c, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, - 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, - 0x53, 0x69, 0x67, 0x6e, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2a, 0x0a, 0x12, 0x55, 0x73, - 0x65, 0x72, 0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, - 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0x2b, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, - 0x7a, 0x7a, 0x6c, 0x65, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, - 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x69, 0x6e, - 0x64, 0x65, 0x78, 0x22, 0x27, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, - 0x65, 0x54, 0x69, 0x70, 0x73, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x69, 0x70, 0x73, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x74, 0x69, 0x70, 0x73, 0x22, 0x31, 0x0a, 0x12, - 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x69, 0x70, 0x73, 0x52, 0x65, - 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x07, 0x2e, 0x44, 0x42, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, - 0x2f, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x52, 0x65, - 0x71, 0x12, 0x1d, 0x0a, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f, - 0x22, 0x48, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x52, - 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x03, 0x61, 0x74, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x0b, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x03, 0x61, - 0x74, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x49, 0x73, 0x53, 0x75, 0x63, 0x63, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x08, 0x52, 0x06, 0x49, 0x73, 0x53, 0x75, 0x63, 0x63, 0x22, 0x63, 0x0a, 0x13, 0x55, 0x73, - 0x65, 0x72, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x44, 0x65, 0x66, 0x50, 0x65, 0x72, 0x52, 0x65, - 0x71, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x63, - 0x75, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, - 0x63, 0x75, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x75, 0x72, - 0x42, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, 0x22, - 0x7c, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x44, 0x65, 0x66, - 0x50, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, - 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x12, - 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x75, 0x72, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x75, - 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, 0x22, 0x76, 0x0a, - 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x75, 0x73, - 0x68, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6b, 0x69, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, - 0x52, 0x05, 0x73, 0x6b, 0x69, 0x6e, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, + 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, + 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x0d, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, + 0x67, 0x6e, 0x52, 0x65, 0x71, 0x22, 0x2b, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, + 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x04, 0x64, 0x61, + 0x74, 0x61, 0x22, 0x2a, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, + 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, + 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0x2b, + 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x41, 0x77, 0x61, 0x72, + 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0x27, 0x0a, 0x11, 0x55, + 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x69, 0x70, 0x73, 0x52, 0x65, 0x71, + 0x12, 0x12, 0x0a, 0x04, 0x74, 0x69, 0x70, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, + 0x74, 0x69, 0x70, 0x73, 0x22, 0x31, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, + 0x67, 0x65, 0x54, 0x69, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x04, 0x64, 0x61, + 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x53, 0x69, 0x67, + 0x6e, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2f, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x53, + 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x04, 0x61, 0x74, 0x6e, + 0x6f, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, + 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x22, 0x48, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, + 0x53, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x03, 0x61, + 0x74, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, + 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x03, 0x61, 0x74, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x49, 0x73, + 0x53, 0x75, 0x63, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x49, 0x73, 0x53, 0x75, + 0x63, 0x63, 0x22, 0x63, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, + 0x44, 0x65, 0x66, 0x50, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, + 0x53, 0x6b, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x75, 0x72, 0x53, + 0x6b, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x75, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x75, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, 0x22, 0x7c, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x53, + 0x77, 0x69, 0x74, 0x63, 0x68, 0x44, 0x65, 0x66, 0x50, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, + 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, + 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x75, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x75, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, - 0x63, 0x75, 0x72, 0x42, 0x67, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x63, 0x75, 0x72, 0x42, 0x67, 0x22, 0x76, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x6b, 0x69, + 0x6e, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x75, 0x73, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6b, 0x69, + 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x73, 0x6b, 0x69, 0x6e, 0x73, 0x12, + 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x07, 0x63, 0x75, 0x72, 0x53, 0x6b, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x75, 0x72, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x75, + 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x75, 0x72, 0x42, 0x67, 0x42, 0x06, 0x5a, + 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -3391,27 +3370,26 @@ var file_user_user_msg_proto_depIdxs = []int32{ 58, // 3: UserInfoResp.ex:type_name -> DBUserExpand 59, // 4: UserRegisterResp.Code:type_name -> ErrorCode 60, // 5: UserLoadResp.data:type_name -> CacheUser - 59, // 6: UserCreateResp.code:type_name -> ErrorCode - 61, // 7: UserGetSettingResp.setting:type_name -> DBUserSetting - 61, // 8: UserUpdateSettingReq.setting:type_name -> DBUserSetting - 59, // 9: UserModifynameResp.code:type_name -> ErrorCode - 57, // 10: UserBattlerecordResp.data:type_name -> DBUser - 58, // 11: UserBattlerecordResp.ex:type_name -> DBUserExpand - 62, // 12: UserBattlerecordResp.pagodaRecord:type_name -> DBPagodaRecord - 63, // 13: UserBattlerecordResp.huntingRecord:type_name -> DBHuntingRank - 64, // 14: UserBattlerecordResp.vikingRecord:type_name -> DBVikingRank - 60, // 15: UserOnlineResp.users:type_name -> CacheUser - 57, // 16: UserDataListResp.users:type_name -> DBUser - 65, // 17: UserGetServerDataResp.data:type_name -> DBServerData - 66, // 18: UserSignResp.data:type_name -> DBSign - 66, // 19: UserChangeTipsResp.data:type_name -> DBSign - 67, // 20: UserSellResReq.atno:type_name -> UserAtno - 68, // 21: UserSellResResp.atn:type_name -> UserAssets - 22, // [22:22] is the sub-list for method output_type - 22, // [22:22] is the sub-list for method input_type - 22, // [22:22] is the sub-list for extension type_name - 22, // [22:22] is the sub-list for extension extendee - 0, // [0:22] is the sub-list for field type_name + 61, // 6: UserGetSettingResp.setting:type_name -> DBUserSetting + 61, // 7: UserUpdateSettingReq.setting:type_name -> DBUserSetting + 59, // 8: UserModifynameResp.code:type_name -> ErrorCode + 57, // 9: UserBattlerecordResp.data:type_name -> DBUser + 58, // 10: UserBattlerecordResp.ex:type_name -> DBUserExpand + 62, // 11: UserBattlerecordResp.pagodaRecord:type_name -> DBPagodaRecord + 63, // 12: UserBattlerecordResp.huntingRecord:type_name -> DBHuntingRank + 64, // 13: UserBattlerecordResp.vikingRecord:type_name -> DBVikingRank + 60, // 14: UserOnlineResp.users:type_name -> CacheUser + 57, // 15: UserDataListResp.users:type_name -> DBUser + 65, // 16: UserGetServerDataResp.data:type_name -> DBServerData + 66, // 17: UserSignResp.data:type_name -> DBSign + 66, // 18: UserChangeTipsResp.data:type_name -> DBSign + 67, // 19: UserSellResReq.atno:type_name -> UserAtno + 68, // 20: UserSellResResp.atn:type_name -> UserAssets + 21, // [21:21] is the sub-list for method output_type + 21, // [21:21] is the sub-list for method input_type + 21, // [21:21] is the sub-list for extension type_name + 21, // [21:21] is the sub-list for extension extendee + 0, // [0:21] is the sub-list for field type_name } func init() { file_user_user_msg_proto_init() } diff --git a/services/worker/main.go b/services/worker/main.go index b27205651..5ab8caa3c 100644 --- a/services/worker/main.go +++ b/services/worker/main.go @@ -44,7 +44,6 @@ import ( "go_dreamfactory/modules/sys" "go_dreamfactory/modules/task" "go_dreamfactory/modules/tools" - "go_dreamfactory/modules/troll" "go_dreamfactory/modules/user" "go_dreamfactory/modules/viking" "go_dreamfactory/modules/worldtask" @@ -103,7 +102,6 @@ func main() { linestory.NewModule(), library.NewModule(), arena.NewModule(), - troll.NewModule(), sociaty.NewModule(), horoscope.NewModule(), pay.NewModule(), From 0ae96005772793fe1a5126879e770646c2ce41d8 Mon Sep 17 00:00:00 2001 From: liwei1dao Date: Mon, 29 May 2023 14:49:52 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E8=A1=A8=E5=92=8C=E5=8D=8F=E8=AE=AE=E6=9C=BA=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/json/game_activereward.json | 8 +- bin/json/game_arenabuychallenge.json | 102 - bin/json/game_buriedcondi.json | 2546 ++++- bin/json/game_buriedtype.json | 1302 +-- bin/json/game_buzkashireward.json | 2 +- bin/json/game_caravancity.json | 10 +- bin/json/game_caravanlv.json | 26 +- bin/json/game_caravanrvent.json | 33 - bin/json/game_chatsystem.json | 52 +- bin/json/game_combatlevel.json | 40 +- bin/json/game_dispatch_battle.json | 4 +- bin/json/game_dispatch_task.json | 146 +- bin/json/game_dreamlandboos.json | 12 +- bin/json/game_drop.json | 42 +- bin/json/game_enchantboss.json | 84 +- bin/json/game_equipattrlibrary.json | 9200 ----------------- bin/json/game_favorability.json | 270 +- bin/json/game_global.json | 30 +- bin/json/game_hero.json | 338 +- bin/json/game_heroawaken.json | 3000 +++--- bin/json/game_herostarup.json | 304 +- bin/json/game_horoscope.json | 1568 +-- bin/json/game_huntingboss.json | 160 +- bin/json/game_huntingchallenge.json | 102 - bin/json/game_initial.json | 80 +- bin/json/game_item.json | 2715 +---- bin/json/game_lottery.json | 60 +- bin/json/game_mainstage.json | 46 +- bin/json/game_newsmithy.json | 568 +- bin/json/game_pagoda.json | 2 +- bin/json/game_pagodataskreward.json | 30 +- bin/json/game_pandamasjx.json | 20 +- bin/json/game_pandamastjjl.json | 32 +- bin/json/game_paypackage.json | 18 +- bin/json/game_potions.json | 72 +- bin/json/game_rdtaskcondi.json | 680 +- bin/json/game_shopitem.json | 72 +- bin/json/game_sign.json | 52 +- bin/json/game_signextra.json | 18 +- bin/json/game_skillafteratk.json | 4 +- bin/json/game_smithycustomer.json | 4 +- bin/json/game_taskactivereward.json | 8 +- bin/json/game_trolllv.json | 12 +- bin/json/game_vikingboss.json | 66 +- bin/json/game_vikingchallenge.json | 102 - bin/json/game_vikingentrance.json | 6 +- bin/json/game_vip.json | 30 +- bin/json/game_worldall.json | 80 +- bin/json/game_worldtask.json | 1832 ++-- modules/arena/api_buy.go | 8 +- modules/arena/configure.go | 35 - modules/buried/module.go | 37 +- modules/equipment/configure.go | 16 +- modules/gateway/agent.go | 17 +- modules/hunting/comp_configure.go | 68 +- modules/user/api_create.go | 15 +- modules/viking/comp_configure.go | 68 +- modules/worldtask/api_accept.go | 2 +- pb/buried_db.pb.go | 12 +- .../structs/Game.ArenaBuyChallenge.go | 42 - .../structs/Game.ArenaBuyChallengeData.go | 50 - sys/configure/structs/Game.BuriedCondiData.go | 2 - sys/configure/structs/Game.BuriedTypeData.go | 10 - .../structs/Game.HuntingChallenge.go | 42 - .../structs/Game.HuntingChallengeData.go | 50 - sys/configure/structs/Game.VikingChallenge.go | 42 - .../structs/Game.VikingChallengeData.go | 50 - sys/configure/structs/Tables.go | 21 - .../structs/game.equipAttrlibrary.go | 42 - .../structs/game.equipAttrlibraryData.go | 60 - 70 files changed, 8252 insertions(+), 18427 deletions(-) delete mode 100644 bin/json/game_arenabuychallenge.json delete mode 100644 bin/json/game_caravanrvent.json delete mode 100644 bin/json/game_equipattrlibrary.json delete mode 100644 bin/json/game_huntingchallenge.json delete mode 100644 bin/json/game_vikingchallenge.json delete mode 100644 sys/configure/structs/Game.ArenaBuyChallenge.go delete mode 100644 sys/configure/structs/Game.ArenaBuyChallengeData.go delete mode 100644 sys/configure/structs/Game.HuntingChallenge.go delete mode 100644 sys/configure/structs/Game.HuntingChallengeData.go delete mode 100644 sys/configure/structs/Game.VikingChallenge.go delete mode 100644 sys/configure/structs/Game.VikingChallengeData.go delete mode 100644 sys/configure/structs/game.equipAttrlibrary.go delete mode 100644 sys/configure/structs/game.equipAttrlibraryData.go diff --git a/bin/json/game_activereward.json b/bin/json/game_activereward.json index 75a654bd5..b0c9f72a2 100644 --- a/bin/json/game_activereward.json +++ b/bin/json/game_activereward.json @@ -6,7 +6,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 1 } ], @@ -20,7 +20,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 2 } ], @@ -34,7 +34,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 3 } ], @@ -48,7 +48,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 4 } ], diff --git a/bin/json/game_arenabuychallenge.json b/bin/json/game_arenabuychallenge.json deleted file mode 100644 index b5a21e592..000000000 --- a/bin/json/game_arenabuychallenge.json +++ /dev/null @@ -1,102 +0,0 @@ -[ - { - "num": 1, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 20 - } - ] - }, - { - "num": 2, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 30 - } - ] - }, - { - "num": 3, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 30 - } - ] - }, - { - "num": 4, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 50 - } - ] - }, - { - "num": 5, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 50 - } - ] - }, - { - "num": 6, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 50 - } - ] - }, - { - "num": 7, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 100 - } - ] - }, - { - "num": 8, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 150 - } - ] - }, - { - "num": 9, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 200 - } - ] - }, - { - "num": 10, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 250 - } - ] - } -] \ No newline at end of file diff --git a/bin/json/game_buriedcondi.json b/bin/json/game_buriedcondi.json index a785cc3d2..c6724193e 100644 --- a/bin/json/game_buriedcondi.json +++ b/bin/json/game_buriedcondi.json @@ -1,16 +1,15 @@ [ { - "id": 101, + "id": 110001, "rtype": 1, "type_sp": 1, "tasktxt": { - "key": "Localize_Localize_Program_tasktxt_1", - "text": "" + "key": "buried_buried_condi_tasktxt_1", + "text": "获得阿宝" }, "type": 1, "valid": 0, "NPC": 0, - "vtype": 1, "value": 1, "filter": [ { @@ -18,5 +17,2544 @@ "d": 25001 } ] + }, + { + "id": 110003, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_2", + "text": "完成某个每日任务(打开任务时,检查指定任务id是否完成,这里的每日,指的世界任务的每日)" + }, + "type": 3, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 700010 + } + ] + }, + { + "id": 110004, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_3", + "text": "指定英雄的等级到达某个程度(打开任务时检查,指定英雄的等级计入进度,达到配置等级则完成)" + }, + "type": 4, + "valid": 0, + "NPC": 0, + "value": 10, + "filter": [ + { + "s": "eq", + "d": 14007 + } + ] + }, + { + "id": 110005, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_4", + "text": "指定英雄的装备数量(打开任务时检查,指定英雄身上穿戴的装备数量计入进度,达到配置数量则完成)" + }, + "type": 5, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "eq", + "d": 25001 + } + ] + }, + { + "id": 110006, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_5", + "text": "指定英雄的星级(打开任务时检查,指定英雄达到X星级则任务完成)" + }, + "type": 6, + "valid": 0, + "NPC": 0, + "value": 5, + "filter": [ + { + "s": "eq", + "d": 25004 + } + ] + }, + { + "id": 110007, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_6", + "text": "日常登录一次" + }, + "type": 7, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110008, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_7", + "text": "累计登陆xx天(创建账号开始,每登录一次则进度+1)" + }, + "type": 8, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110009, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_8", + "text": "连续登陆xx天(接到任务时,记录连续登录的天数,如果中断每有登录则进度清到1天)" + }, + "type": 9, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110010, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_9", + "text": "拥有xx个好友(打开任务时,检查好友数量计入进度,达到配置数量则完成任务)" + }, + "type": 10, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110012, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_10", + "text": "使用好友助战英雄xx次(接到任务开始,每次使用好友的助战英雄进度战斗则进度+1,无论战斗结果如何)" + }, + "type": 12, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110013, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_11", + "text": "更换X次助战英雄(接到任务开始,每次更换助战英雄则进度+1)" + }, + "type": 13, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110014, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_12", + "text": "xx次普通招募(接到任务后,每次进行普通招募进度+1,十连抽进度+10)" + }, + "type": 14, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110015, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_13", + "text": "xx次阵营招募(接到任务后,每次进行阵营招募进度+1,阵营十连抽进度+10)" + }, + "type": 15, + "valid": 0, + "NPC": 0, + "value": 10, + "filter": [] + }, + { + "id": 110016, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_14", + "text": "招募到xx品质英雄xx个(接到任务后在招募中每获得一个X品质的英雄则进度+1)" + }, + "type": 16, + "valid": 0, + "NPC": 0, + "value": 5, + "filter": [ + { + "s": "eq", + "d": 3 + } + ] + }, + { + "id": 110017, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_15", + "text": "普通招募十连,获得xx个以上xx星英雄(接到任务后在一次十连抽中抽到X个X星以上英雄,连续点10次单抽不算)" + }, + "type": 17, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 3 + } + ] + }, + { + "id": 110018, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_16", + "text": "累计xx次普通招募" + }, + "type": 18, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110019, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_17", + "text": "累计xx次阵营招募" + }, + "type": 19, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110020, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_18", + "text": "用户等级达到xx级(打开任务时检查,人物等级计入进度,达到配置等级则完成)" + }, + "type": 20, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110023, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_19", + "text": "拥有xx个xx星级的xx等级英雄(打开任务时检查,配置英雄和配置等级都达标的英雄数量,记录进度)" + }, + "type": 23, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [ + { + "s": "eq", + "d": 5 + }, + { + "s": "gte", + "d": 20 + } + ] + }, + { + "id": 110024, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_20", + "text": "为任意英雄提升xx次等级(接到任务后,任意英雄等级每提升1级则进度+1)" + }, + "type": 24, + "valid": 0, + "NPC": 0, + "value": 4, + "filter": [] + }, + { + "id": 110025, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_21", + "text": "xx名xx英雄升至xx星(接到任务后,每有一个指定英雄id的英雄升至X星则进度+1)" + }, + "type": 25, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [ + { + "s": "eq", + "d": 25001 + }, + { + "s": "gte", + "d": 6 + } + ] + }, + { + "id": 110026, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_22", + "text": "xx名英雄从三星升四星(接到任务后,每当一个从3星升至4星时,进度+1)" + }, + "type": 26, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110027, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_23", + "text": "xx名英雄从四星升五星(接到任务后,每当一个从4星升至5星时,进度+1)" + }, + "type": 27, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110028, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_24", + "text": "xx名英雄从五星升六星(接到任务后,每当一个从5星升至6星时,进度+1)" + }, + "type": 28, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110030, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_25", + "text": "获得xx个品质为xx及以上的英雄(从创号开始,每获得一个配置品质的英雄进度+1)" + }, + "type": 30, + "valid": 0, + "NPC": 0, + "value": 5, + "filter": [ + { + "s": "gte", + "d": 3 + } + ] + }, + { + "id": 110032, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_26", + "text": "xx个品质为xx的英雄升到xx级(从创号开始,当配置品质的英雄达到XX级时进度+1)" + }, + "type": 32, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [ + { + "s": "eq", + "d": 3 + }, + { + "s": "gte", + "d": 20 + } + ] + }, + { + "id": 110033, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_27", + "text": "xx个品质为xx以及以上英雄升到xx级(从创号开始,当配置品质及以上的英雄达到XX级时进度+1)" + }, + "type": 33, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [ + { + "s": "eq", + "d": 3 + }, + { + "s": "gte", + "d": 23 + } + ] + }, + { + "id": 110034, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_28", + "text": "xx个英雄觉醒达到xx阶段从(创号开始,每有一个英雄觉醒达到X阶段则进度+1)" + }, + "type": 34, + "valid": 0, + "NPC": 0, + "value": 5, + "filter": [ + { + "s": "gte", + "d": 2 + } + ] + }, + { + "id": 110035, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_29", + "text": "xx英雄觉醒达到xx阶段(创号开始,检查指定英雄id的英雄觉醒是否达到X阶段,达到则进度+1)" + }, + "type": 35, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "eq", + "d": 25001 + } + ] + }, + { + "id": 110036, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_30", + "text": "xx位xx品质xx职业英雄(xx阵营)觉醒达到xx阶段(检查满级,满共鸣,满觉醒的英雄数量,每有一个进度+1)" + }, + "type": 36, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 3 + }, + { + "s": "eq", + "d": 3 + } + ] + }, + { + "id": 110037, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_31", + "text": "xx名xx品质英雄满共鸣、等级、觉醒(检查X品质的英雄满级,满共鸣,满觉醒的英雄数量,每有一个进度+1)" + }, + "type": 37, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 3 + } + ] + }, + { + "id": 110038, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_32", + "text": "xx英雄满级、共鸣、觉醒至最高状态(检查满级,满共鸣,满觉醒的英雄数量,每有一个进度+1)" + }, + "type": 38, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110039, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_33", + "text": "任意英雄共鸣累计xx次(从创号开始,英雄每次共鸣1个同名英雄进度+1,如果一次共鸣选中了多个同名英雄则进度+多次)" + }, + "type": 39, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110040, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_34", + "text": "xx个英雄共鸣满xx次(打开任务时检查每个英雄的共鸣次数,每有一个共鸣次数大于配置次数的英雄进度+1)" + }, + "type": 40, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "gte", + "d": 2 + } + ] + }, + { + "id": 110041, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_35", + "text": "xx名英雄穿戴xx件xx星级的装备(打开任务时检查每个英雄穿戴的装备,当满足星级的装备达到N件时,进度+1)" + }, + "type": 41, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "gte", + "d": 2 + }, + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110042, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_36", + "text": "xx名英雄穿戴xx件xx等级的装备(打开任务时检查每个英雄穿戴的装备,当满足强化等级的装备达到N件时,进度+1)" + }, + "type": 42, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "gte", + "d": 2 + }, + { + "s": "eq", + "d": 2 + } + ] + }, + { + "id": 110043, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_37", + "text": "将xx件装备强化至xx级(接到任务后,每次装备强化等级变动时,强化前等级小于配置等级且强化后等级大于等于配置等级则进度+1)" + }, + "type": 43, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "gte", + "d": 2 + } + ] + }, + { + "id": 110046, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_38", + "text": "为xx名英雄穿戴完整xx星【xx】套装装备(打开任务时,检查英雄身上的XX套装,每有一个穿戴XX套装的英雄其套装中星级最低的装备达到配置时进度+1)" + }, + "type": 46, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "gte", + "d": 4 + }, + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110047, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_39", + "text": "累计强化装备成功xx次(从创号开始,每次强化装备成功1级则进度+1,如果使用连续强化一次性从0强化到15则进度+15)" + }, + "type": 47, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110050, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_40", + "text": "获得xx星以上装备xx件(接到任务后,每获得一件星级大于等于配置星级的装备,则进度+1)" + }, + "type": 50, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "gte", + "d": 1 + } + ] + }, + { + "id": 110051, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_41", + "text": "在铁匠铺中获得xx件xx星装备(接到任务后,从铁匠铺领取奖励时每获得一件星级大于等于配置星级的装备,则进度+1)" + }, + "type": 51, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "gte", + "d": 1 + } + ] + }, + { + "id": 110052, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_42", + "text": "xx英雄提升xx次技能等级(接到任务后,指定英雄id的英雄提升一次技能等级则进度+1)" + }, + "type": 52, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 14007 + } + ] + }, + { + "id": 110053, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_43", + "text": "技能升级累计xx次(接到任务后,任意英雄提升一次技能等级则进度+1)" + }, + "type": 53, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110054, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_44", + "text": "x名卡牌角色技能全满级(打开任务时统计技能满级的英雄数量,每个进度+1)" + }, + "type": 54, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110055, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_45", + "text": "xx品质英雄提升xx次技能等级(接到任务后,指定品质的英雄提升一次技能等级则进度+1)" + }, + "type": 55, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "eq", + "d": 3 + } + ] + }, + { + "id": 110056, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_46", + "text": "拥有xx名技能升级xx次的xx职业英雄(打开任务时检查指定职业的英雄技能,每有一个英雄“技能等级之和-技能数量>=配置的技能升级次数”则进度+1)" + }, + "type": 56, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "gte", + "d": 1 + }, + { + "s": "eq", + "d": 2 + } + ] + }, + { + "id": 110057, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_47", + "text": "xx名英雄技能满级(打开任务时检查技能满级的英雄个数并记入进度)" + }, + "type": 57, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110060, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_48", + "text": "任意主线副本通关X次(接到任务后,每次通过主线副本进度+1)" + }, + "type": 60, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110061, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_49", + "text": "通关主线关卡xx(打开任务时检查所填关卡id是否通过,通过则任务完成)" + }, + "type": 61, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1100102 + } + ] + }, + { + "id": 110062, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_50", + "text": "世界聊天发言xx次(世界频道发一段话算一次,被限制发言CD不计入发言次数)" + }, + "type": 62, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110064, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_51", + "text": "任意商品购买xx次(在任意商店购买1份商品进度+1,一次购买10份进度+10。1份的定义为:玩家进行购买操作时最小可选的购买数量为1份)" + }, + "type": 64, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110065, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_52", + "text": "在商店购买xx商品xx件(在任意商店购买指定道具id的商品的数量)" + }, + "type": 65, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "eq", + "d": 10001 + } + ] + }, + { + "id": 110066, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_53", + "text": "xx商店购买任意商品xx次(在指定商店id中购买1份商品进度+1,一次购买10份进度+10。1份的定义为玩家进行购买操作时最小可选的购买数量为1份)" + }, + "type": 66, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110067, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_54", + "text": "商店购物消耗xx货币xx个(某种货币发生减少时,将减少量计入进度)" + }, + "type": 67, + "valid": 0, + "NPC": 0, + "value": 1000, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110068, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_55", + "text": "任意渠道消耗xx金币(金币发生减少时,将减少量计入进度)" + }, + "type": 68, + "valid": 0, + "NPC": 0, + "value": 1000, + "filter": [] + }, + { + "id": 110070, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_56", + "text": "通关世界任务XX关卡(X为世界任务战斗表的ID)" + }, + "type": 70, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 101 + } + ] + }, + { + "id": 110072, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_57", + "text": "通关难度A维京远征指定BOSSN次(从接到任务开始,只有通关A难度进度才+1)" + }, + "type": 73, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + }, + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110073, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_58", + "text": "通关难度A维京远征指定BOSS(检查最高难度记录是否超过了此难度,超过则完成)" + }, + "type": 74, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110074, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_59", + "text": "自动战斗通关难度A的维京远征指定BOSS(从接到任务开始,若全程无手动操作(不包含变速)且挑战难度大于等于A则判断任务完成)" + }, + "type": 75, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110075, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_60", + "text": "通关维京远征指定BOSSN次(从创号开始记录,通关任意难度进度都+1)" + }, + "type": 76, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110076, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_61", + "text": "通关难度A及以上维京远征指定BOSSN次(从接到任务开始,若通关难度大于等于设定难度,则进度+1)" + }, + "type": 77, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + }, + { + "s": "gte", + "d": 1 + } + ] + }, + { + "id": 110077, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_62", + "text": "通关难度A维京远征指定BOSS时间达到XX秒以内(检查最高记录是否超过了此难度,超过则完成)" + }, + "type": 78, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + }, + { + "s": "lte", + "d": 30 + } + ] + }, + { + "id": 110078, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_63", + "text": "使用好友助战英雄通关A难度的指定维京远征BOSS(从接到任务开始,通关阵营中包含好友助战英雄,难度大于等于A的指定维京远征BOSS时任务完成。)" + }, + "type": 79, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110079, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_64", + "text": "通关难度A指定狩猎BOSS难度N次(从接到任务开始,只有通关A难度进度才+1)" + }, + "type": 80, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + }, + { + "s": "gte", + "d": 1 + } + ] + }, + { + "id": 110080, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_65", + "text": "通关A难度狩猎BOOS(检查最高难度记录是否达到了此难度,达到则完成)" + }, + "type": 81, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110081, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_66", + "text": "通关狩猎指定BOOSN次(历史)(从创号开始记录登陆天数,通关任意难度进度都+1)" + }, + "type": 82, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110082, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_67", + "text": "通关难度A及以上指定狩猎BOOSN次(从接到任务开始,若通关难度大于等于设定难度,则进度+1)" + }, + "type": 83, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + }, + { + "s": "gte", + "d": 1 + } + ] + }, + { + "id": 110086, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_68", + "text": "发现月之秘境N次(从接到任务开始,发现一次则进度+1)" + }, + "type": 87, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110087, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_69", + "text": "完成月之秘境N次(从接到任务开始,打完一个月之秘境则进度+1(耗尽BOSS挑战次数))" + }, + "type": 88, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [] + }, + { + "id": 110088, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_70", + "text": "任意招募N次(从接到任务开始,普通招募和阵营招募都算,单抽1次,10连抽算10次)" + }, + "type": 89, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110089, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_71", + "text": "进行N次普通招募10连抽(从接到任务开始,单抽点10次不算,10连抽才进度+1)" + }, + "type": 90, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110090, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_72", + "text": "进行N次阵营招募10连抽(从接到任务开始,单抽点10次不算,10连抽才进度+1)" + }, + "type": 91, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110091, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_73", + "text": "强化装备N次(从接到任务开始,强化任意装备,失败和成功进度都+1)" + }, + "type": 92, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [] + }, + { + "id": 110092, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_74", + "text": "拥有一套强化到N级的A套装(记录A套装中每个部位的最高强化等级,并将这些强化等级中最低的数值计入进度,如果达到了任务所需的强化等级则完成任务。)" + }, + "type": 93, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110093, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_75", + "text": "装备附魔N次(历史)(从创号开始记录,附魔成功进度+1)" + }, + "type": 94, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110094, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_76", + "text": "装备洗练N次(历史)(从创号开始记录,洗练成功进度+1)" + }, + "type": 95, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110095, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_77", + "text": "强化失败N次(从接到任务开始,强化失败进度+1)" + }, + "type": 96, + "valid": 0, + "NPC": 0, + "value": 10, + "filter": [] + }, + { + "id": 110096, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_78", + "text": "获得X星X套装的装备N件(时段)(从接到任务开始,每获得1件X星X套装的装备则进度+1)" + }, + "type": 97, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [ + { + "s": "gte", + "d": 3 + }, + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110097, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_79", + "text": "穿戴N套强化A级的装备(打开任务时,检查英雄身上的装备的最低等级,当最低等级超过A则任务进度+1。)" + }, + "type": 98, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "gte", + "d": 3 + } + ] + }, + { + "id": 110098, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_80", + "text": "获得N个初始属性大于等于A条的B星装备(从接到任务开始,每次获得强化为0级的A星装备时判断属性条目,大于或等于B进度+1)" + }, + "type": 99, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "gte", + "d": 3 + }, + { + "s": "eq", + "d": 5 + } + ] + }, + { + "id": 110101, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_81", + "text": "阵营饰品强化成功N次(历史)(从创号开始记录,强化成功进度+1)" + }, + "type": 102, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110102, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_82", + "text": "获得X星阵营饰品N件(历史)(从创号开始记录,每获得1件X星阵营饰品则进度+1)" + }, + "type": 103, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 3 + } + ] + }, + { + "id": 110103, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_83", + "text": "消费N个钻石(历史)(从创号开始记录,每次消耗钻石增加消耗额的进度)" + }, + "type": 104, + "valid": 0, + "NPC": 0, + "value": 1000, + "filter": [] + }, + { + "id": 110104, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_84", + "text": "商店刷新N次(从接到任务开始,每次刷新商店进度+1)" + }, + "type": 105, + "valid": 0, + "NPC": 0, + "value": 10, + "filter": [] + }, + { + "id": 110105, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_85", + "text": "跨服聊天发言N次(从接到任务开始,每次跨服发言成功进度+1)" + }, + "type": 106, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110106, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_86", + "text": "助战英雄被使用X次(从接到任务开始,每被使用1次则进度+1)" + }, + "type": 108, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110107, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_87", + "text": "加入公会(打开任务时,检查是否加入了公会,加入则完成)" + }, + "type": 109, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110109, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_88", + "text": "拥有N个X级英雄(打开任务时,检查达到X级的英雄数量,达到任务所需个数则完成任务,)" + }, + "type": 111, + "valid": 0, + "NPC": 0, + "value": 3, + "filter": [ + { + "s": "gte", + "d": 20 + } + ] + }, + { + "id": 110110, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_89", + "text": "养成N个X级英雄(从接到任务开始,英雄升级时,如果英雄的初始等级=指定数目,任务便算完成)" + }, + "type": 175, + "valid": 0, + "NPC": 0, + "value": 40, + "filter": [] + }, + { + "id": 110174, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_141", + "text": "解锁X个新图纸(从接取任务开始,在铁匠铺每解锁任意阶段的一个新图纸,进度便加一)" + }, + "type": 177, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110175, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_142", + "text": "解锁X阶段装备新图纸X个(接取任务后开始记录,在铁匠铺对应阶段的一个新图纸,进度便加一)" + }, + "type": 179, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [ + { + "s": "gte", + "d": 2 + } + ] + }, + { + "id": 110176, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_143", + "text": "在X副本内使用好友助战X次(接取任务后开始记录,在对应副本内使用好友助战每有1次,进度便加一)" + }, + "type": 180, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + } + ] + }, + { + "id": 110177, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_144", + "text": "X副本X难度自动战斗X次(接取任务后开始记录,在对应副本的指定难度内,使用自动战斗每有1次,进度便加一)" + }, + "type": 181, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [ + { + "s": "eq", + "d": 1 + }, + { + "s": "gte", + "d": 1 + } + ] + }, + { + "id": 110178, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_145", + "text": "打赢武馆内踢馆X次(接取任务后开始记录,每赢得一次踢馆战斗的胜利,进度便加一)" + }, + "type": 182, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110179, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_146", + "text": "去好友武馆踢馆X次(接取任务后开始记录,每次在好友武馆开启一场踢馆,便进度加一)" + }, + "type": 183, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110180, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_147", + "text": "使用好友武馆木桩X次(接取任务后,每次使用好友的木桩训练英雄一次,进度便加一)" + }, + "type": 184, + "valid": 0, + "NPC": 0, + "value": 1, + "filter": [] + }, + { + "id": 110181, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_148", + "text": "完成X次每日1健(接取任务后,每完成1次每日1健,便进度加一)" + }, + "type": 185, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110182, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_149", + "text": "武馆的派遣悬赏X次(接取任务后开始计算,当玩家的派遣完成1次,进度便加一,不领奖也算一次,只要倒计时结束即可)" + }, + "type": 186, + "valid": 0, + "NPC": 0, + "value": 2, + "filter": [] + }, + { + "id": 110183, + "rtype": 1, + "type_sp": 1, + "tasktxt": { + "key": "buried_buried_condi_tasktxt_150", + "text": "搜集X道具Y个" + }, + "type": 187, + "valid": 0, + "NPC": 0, + "value": 5, + "filter": [ + { + "s": "eq", + "d": 132000 + } + ] } ] \ No newline at end of file diff --git a/bin/json/game_buriedtype.json b/bin/json/game_buriedtype.json index 8dabf672f..2b21ec5ee 100644 --- a/bin/json/game_buriedtype.json +++ b/bin/json/game_buriedtype.json @@ -1,1676 +1,746 @@ [ { "id": 1, - "insert": 0, - "desc": "获得英雄指定", - "data1": "完成次数", - "data2": "英雄ID", - "data3": "", - "data4": "" + "insert": 2 }, { "id": 2, - "insert": 1, - "desc": "主线之内触发了剧情Id", - "data1": "完成次数", - "data2": "剧情ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 3, - "insert": 0, - "desc": "完成某个每日任务(打开任务时,检查指定任务id是否完成,这里的每日,指的世界任务的每日)", - "data1": "完成次数", - "data2": "任务ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 4, - "insert": 0, - "desc": "指定英雄的等级到达某个程度(打开任务时检查,指定英雄的等级计入进度,达到配置等级则完成)", - "data1": "填写英雄需要的等级", - "data2": "英雄ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 5, - "insert": 0, - "desc": "指定英雄的装备数量(打开任务时检查,指定英雄身上穿戴的装备数量计入进度,达到配置数量则完成)", - "data1": "填写装备数量", - "data2": "英雄ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 6, - "insert": 0, - "desc": "指定英雄的星级(打开任务时检查,指定英雄达到X星级则任务完成)", - "data1": "填写星级数量", - "data2": "英雄ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 7, - "insert": 0, - "desc": "日常登录一次", - "data1": "日常登录次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 8, - "insert": 0, - "desc": "累计登陆xx天(创建账号开始,每登录一次则进度+1)", - "data1": "登录天数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 9, - "insert": 0, - "desc": "连续登陆xx天(接到任务时,记录连续登录的天数,如果中断每有登录则进度清到1天)", - "data1": "登录天数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 10, - "insert": 0, - "desc": "拥有xx个好友(打开任务时,检查好友数量计入进度,达到配置数量则完成任务)", - "data1": "拥有的好友数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 11, - "insert": 1, - "desc": "赠送X次友情点(接到任务开始,每次向一名好友赠送一次友情点则进度+1,一件赠送则加赠送数量的进度)", - "data1": "赠送次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 12, - "insert": 0, - "desc": "使用好友助战英雄xx次(接到任务开始,每次使用好友的助战英雄进度战斗则进度+1,无论战斗结果如何)", - "data1": "使用好友助战英雄次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 13, - "insert": 0, - "desc": "更换X次助战英雄(接到任务开始,每次更换助战英雄则进度+1)", - "data1": "更换次数数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 14, - "insert": 0, - "desc": "xx次普通招募(接到任务后,每次进行普通招募进度+1,十连抽进度+10)", - "data1": "累计招募次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 15, - "insert": 0, - "desc": "xx次阵营招募(接到任务后,每次进行阵营招募进度+1,阵营十连抽进度+10)", - "data1": "累计招募次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 16, - "insert": 0, - "desc": "招募到xx品质英雄xx个(接到任务后在招募中每获得一个X品质的英雄则进度+1)", - "data1": "获得英雄数量", - "data2": "品质", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 17, - "insert": 0, - "desc": "普通招募十连,获得xx个以上xx星英雄(接到任务后在一次十连抽中抽到X个X星以上英雄,连续点10次单抽不算)", - "data1": "获得个数", - "data2": "星级", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 18, - "insert": 0, - "desc": "累计xx次普通招募", - "data1": "招募次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 19, - "insert": 0, - "desc": "累计xx次阵营招募", - "data1": "招募次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 20, - "insert": 0, - "desc": "用户等级达到xx级(打开任务时检查,人物等级计入进度,达到配置等级则完成)", - "data1": "等级", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 21, - "insert": 1, - "desc": "英雄合成xx次(使用英雄合成功能合成1个英雄则进度+1)", - "data1": "合成次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 22, - "insert": 1, - "desc": "合成xx英雄(通过合成英雄功能合成到指定英雄id的英雄则完成任务)", - "data1": "英雄ID", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 23, - "insert": 0, - "desc": "拥有xx个xx星级的xx等级英雄(打开任务时检查,配置英雄和配置等级都达标的英雄数量,记录进度)", - "data1": "拥有数量", - "data2": "", - "data3": "等级", - "data4": "" + "insert": 0 }, { "id": 24, - "insert": 0, - "desc": "为任意英雄提升xx次等级(接到任务后,任意英雄等级每提升1级则进度+1)", - "data1": "提升等级次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 25, - "insert": 0, - "desc": "xx名xx英雄升至xx星(接到任务后,每有一个指定英雄id的英雄升至X星则进度+1)", - "data1": "共计要升几名英雄", - "data2": "英雄ID", - "data3": "星级", - "data4": "" + "insert": 0 }, { "id": 26, - "insert": 0, - "desc": "xx名英雄从三星升四星(接到任务后,每当一个从3星升至4星时,进度+1)", - "data1": "升星的英雄数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 27, - "insert": 0, - "desc": "xx名英雄从四星升五星(接到任务后,每当一个从4星升至5星时,进度+1)", - "data1": "升星的英雄数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 28, - "insert": 0, - "desc": "xx名英雄从五星升六星(接到任务后,每当一个从5星升至6星时,进度+1)", - "data1": "升星的英雄数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 29, - "insert": 1, - "desc": "拥有xx个xx级及以上的【xx】英雄(打开任务时时检查XX级以上的指定英雄并计入进度)", - "data1": "拥有数量", - "data2": "等级", - "data3": "英雄ID", - "data4": "" + "insert": 3 }, { "id": 30, - "insert": 0, - "desc": "获得xx个品质为xx及以上的英雄(从创号开始,每获得一个配置品质的英雄进度+1)", - "data1": "获得数量", - "data2": "品质", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 31, - "insert": 1, - "desc": "获得xx个品质为xx以上的英雄(从创号开始,每获得一个配置品质及以上的英雄进度+1)", - "data1": "获得数量", - "data2": "品质", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 32, - "insert": 0, - "desc": "xx个品质为xx的英雄升到xx级(从创号开始,当配置品质的英雄达到XX级时进度+1)", - "data1": "满足条件的英雄数量", - "data2": "满足条件的英雄品质", - "data3": "需要升到的等级", - "data4": "" + "insert": 0 }, { "id": 33, - "insert": 0, - "desc": "xx个品质为xx以及以上英雄升到xx级(从创号开始,当配置品质及以上的英雄达到XX级时进度+1)", - "data1": "满足条件的英雄数量", - "data2": "满足条件的英雄品质", - "data3": "需要升到的等级", - "data4": "" + "insert": 0 }, { "id": 34, - "insert": 0, - "desc": "xx个英雄觉醒达到xx阶段从(创号开始,每有一个英雄觉醒达到X阶段则进度+1)", - "data1": "英雄数量", - "data2": "觉醒阶段", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 35, - "insert": 0, - "desc": "xx英雄觉醒达到xx阶段(创号开始,检查指定英雄id的英雄觉醒是否达到X阶段,达到则进度+1)", - "data1": "觉醒阶段", - "data2": "英雄ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 36, - "insert": 0, - "desc": "xx位xx品质xx职业英雄(xx阵营)觉醒达到xx阶段(检查满级,满共鸣,满觉醒的英雄数量,每有一个进度+1)", - "data1": "数量", - "data2": "英雄品质", - "data3": "指定职业", - "data4": "指定阵营" + "insert": 0 }, { "id": 37, - "insert": 0, - "desc": "xx名xx品质英雄满共鸣、等级、觉醒(检查X品质的英雄满级,满共鸣,满觉醒的英雄数量,每有一个进度+1)", - "data1": "数量", - "data2": "英雄品质", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 38, - "insert": 0, - "desc": "xx英雄满级、共鸣、觉醒至最高状态(检查满级,满共鸣,满觉醒的英雄数量,每有一个进度+1)", - "data1": "数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 39, - "insert": 0, - "desc": "任意英雄共鸣累计xx次(从创号开始,英雄每次共鸣1个同名英雄进度+1,如果一次共鸣选中了多个同名英雄则进度+多次)", - "data1": "共鸣次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 40, - "insert": 0, - "desc": "xx个英雄共鸣满xx次(打开任务时检查每个英雄的共鸣次数,每有一个共鸣次数大于配置次数的英雄进度+1)", - "data1": "英雄数量", - "data2": "共鸣次数", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 41, - "insert": 0, - "desc": "任意英雄穿戴xx件xx星级的装备(打开任务时检查每个英雄穿戴的装备,当满足星级的装备达到N件时,进度+1)", - "data1": "完成次数", - "data2": "装备数量", - "data3": "指定星级", - "data4": "" + "insert": 0 }, { "id": 42, - "insert": 0, - "desc": "任意英雄穿戴xx件xx等级的装备(打开任务时检查每个英雄穿戴的装备,当满足强化等级的装备达到N件时,进度+1)", - "data1": "完成次数", - "data2": "装备数量", - "data3": "指定等级", - "data4": "" + "insert": 0 }, { "id": 43, - "insert": 0, - "desc": "将xx件装备强化至xx级(接到任务后,每次装备强化等级变动时,强化前等级小于配置等级且强化后等级大于等于配置等级则进度+1)", - "data1": "数量", - "data2": "等级", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 44, - "insert": 1, - "desc": "任意装备强化到xx级(可以合并到43,件数填1)", - "data1": "强化等级", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 45, - "insert": 1, - "desc": "将xx件xx星【xx】套装装备强化至xx级(打开任务时,检查玩家背包中的X套装,如果套装中装备星级和强化等级的最低值都达到配置的套装数量,每有一套进度+1)", - "data1": "数量", - "data2": "指定装备星级", - "data3": "指定套装", - "data4": "强化等级" + "insert": 1 }, { "id": 46, - "insert": 0, - "desc": "为xx名英雄穿戴完整xx星【xx】套装装备(打开任务时,检查英雄身上的XX套装,每有一个穿戴XX套装的英雄其套装中星级最低的装备达到配置时进度+1)", - "data1": "数量", - "data2": "指定装备星级", - "data3": "指定套装", - "data4": "" + "insert": 0 }, { "id": 47, - "insert": 0, - "desc": "累计强化装备成功xx次(从创号开始,每次强化装备成功1级则进度+1,如果使用连续强化一次性从0强化到15则进度+15)", - "data1": "数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 48, - "insert": 1, - "desc": "xx次xx星的二件套装备强化至xx并穿戴(打开任务时,检查英雄身上穿戴的二件套,当套装中最低强化等级最低装备星级均满足配置时,进度+1)", - "data1": "次数", - "data2": "指定装备星级", - "data3": "强化等级", - "data4": "" + "insert": 1 }, { "id": 49, - "insert": 1, - "desc": "xx次xx星的四件套装备强化至xx并穿戴(打开任务时,检查英雄身上穿戴的四件套,当套装中最低强化等级最低装备星级均满足配置时,进度+1)", - "data1": "次数", - "data2": "指定装备星级", - "data3": "强化等级", - "data4": "" + "insert": 1 }, { "id": 50, - "insert": 0, - "desc": "获得xx星以上装备xx件(接到任务后,每获得一件星级大于等于配置星级的装备,则进度+1)", - "data1": "数量", - "data2": "星级", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 51, - "insert": 0, - "desc": "在铁匠铺中获得xx件xx星装备(接到任务后,从铁匠铺领取奖励时每获得一件星级大于等于配置星级的装备,则进度+1)", - "data1": "数量", - "data2": "指定装备品质", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 52, - "insert": 0, - "desc": "xx英雄提升xx次技能等级(接到任务后,指定英雄id的英雄提升一次技能等级则进度+1)", - "data1": "提升技能次数", - "data2": "指定英雄", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 53, - "insert": 0, - "desc": "技能升级累计xx次(接到任务后,任意英雄提升一次技能等级则进度+1)", - "data1": "累计提升次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 54, - "insert": 0, - "desc": "x名卡牌角色技能全满级(打开任务时统计技能满级的英雄数量,每个进度+1)", - "data1": "满技能卡片角色数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 55, - "insert": 0, - "desc": "xx品质英雄提升xx次技能等级(接到任务后,指定品质的英雄提升一次技能等级则进度+1)", - "data1": "次数", - "data2": "指定品质", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 56, - "insert": 0, - "desc": "拥有xx名技能升级xx次的xx职业英雄(打开任务时检查指定职业的英雄技能,每有一个英雄“技能等级之和-技能数量>=配置的技能升级次数”则进度+1)", - "data1": "数量", - "data2": "技能升级次数", - "data3": "指定职业", - "data4": "" + "insert": 0 }, { "id": 57, - "insert": 0, - "desc": "xx名英雄技能满级(打开任务时检查技能满级的英雄个数并记入进度)", - "data1": "数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 58, - "insert": 1, - "desc": "通关任意普通爬塔层数(爬塔战斗胜利则进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 59, - "insert": 1, - "desc": "通关普通爬塔xx层(打开任务时检查所填层数是否通过,通过则任务完)", - "data1": "层数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 60, - "insert": 0, - "desc": "任意主线副本通关X次(接到任务后,每次通过主线副本进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 61, - "insert": 0, - "desc": "通关主线关卡xx(打开任务时检查所填关卡id是否通过,通过则任务完成)", - "data1": "关卡ID", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 62, - "insert": 0, - "desc": "世界聊天发言xx次(世界频道发一段话算一次,被限制发言CD不计入发言次数)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 63, - "insert": 1, - "desc": "日常任务活跃度达到xx(打开任务时查询日常任务活跃记为进度,而不是最高纪录)", - "data1": "活跃值", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 64, - "insert": 0, - "desc": "任意商品购买xx次(在任意商店购买1份商品进度+1,一次购买10份进度+10。1份的定义为:玩家进行购买操作时最小可选的购买数量为1份)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 65, - "insert": 0, - "desc": "在商店购买xx商品xx件(在任意商店购买指定道具id的商品的数量)", - "data1": "数量", - "data2": "道具ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 66, - "insert": 0, - "desc": "xx商店购买任意商品xx次(在指定商店id中购买1份商品进度+1,一次购买10份进度+10。1份的定义为玩家进行购买操作时最小可选的购买数量为1份)", - "data1": "数量", - "data2": "商店ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 67, - "insert": 0, - "desc": "商店购物消耗xx货币xx个(某种货币发生减少时,将减少量计入进度)", - "data1": "数量", - "data2": "货币ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 68, - "insert": 0, - "desc": "任意渠道消耗xx金币(金币发生减少时,将减少量计入进度)", - "data1": "金币消耗的数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 69, - "insert": 1, - "desc": "与其他玩家切磋xx次", - "data1": "切磋次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 70, - "insert": 0, - "desc": "通关世界任务XX关卡(X为世界任务战斗表的ID)", - "data1": "完成次数", - "data2": "通关的关卡ID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 72, - "insert": 1, - "desc": "完成一次捏人(捏人系统改变任何参数点保存即为任务完成)", - "data1": "", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 73, - "insert": 0, - "desc": "通关难度A维京远征指定BOSSN次(从接到任务开始,只有通关A难度进度才+1)", - "data1": "次数", - "data2": "boss类型", - "data3": "难度", - "data4": "" + "insert": 0 }, { "id": 74, - "insert": 0, - "desc": "通关难度A维京远征指定BOSS(检查最高难度记录是否超过了此难度,超过则完成)", - "data1": "次数", - "data2": "BOSSid", - "data3": "难度", - "data4": "" + "insert": 0 }, { "id": 75, - "insert": 0, - "desc": "自动战斗通关难度A的维京远征指定BOSS(从接到任务开始,若全程无手动操作(不包含变速)且挑战难度大于等于A则判断任务完成)", - "data1": "难度", - "data2": "BOSSid", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 76, - "insert": 0, - "desc": "通关维京远征指定BOSSN次(从创号开始记录,通关任意难度进度都+1)", - "data1": "次数", - "data2": "BOSSid", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 77, - "insert": 0, - "desc": "通关难度A及以上维京远征指定BOSSN次(从接到任务开始,若通关难度大于等于设定难度,则进度+1)", - "data1": "次数", - "data2": "BOSSid", - "data3": "难度", - "data4": "" + "insert": 0 }, { "id": 78, - "insert": 0, - "desc": "通关难度A维京远征指定BOSS时间达到XX秒以内(检查最高记录是否超过了此难度,超过则完成)", - "data1": "难度", - "data2": "BOSSid", - "data3": "时间(秒)", - "data4": "" + "insert": 0 }, { "id": 79, - "insert": 0, - "desc": "使用好友助战英雄通关A难度的指定维京远征BOSS(从接到任务开始,通关阵营中包含好友助战英雄,难度大于等于A的指定维京远征BOSS时任务完成。)", - "data1": "难度", - "data2": "BOSSid", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 80, - "insert": 0, - "desc": "通关难度A指定狩猎BOSS难度N次(从接到任务开始,只有通关A难度进度才+1)", - "data1": "次数", - "data2": "BOSSid", - "data3": "难度", - "data4": "" + "insert": 0 }, { "id": 81, - "insert": 0, - "desc": "通关A难度狩猎BOSS(检查最高难度记录是否达到了此难度,达到则完成)", - "data1": "难度", - "data2": "BOSSid", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 82, - "insert": 0, - "desc": "通关狩猎指定BOOSN次(历史)(从创号开始记录登陆天数,通关任意难度进度都+1)", - "data1": "次数", - "data2": "BOSSid", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 83, - "insert": 0, - "desc": "通关难度A及以上指定狩猎BOOSN次(从接到任务开始,若通关难度大于等于设定难度,则进度+1)", - "data1": "次数", - "data2": "BOSSid", - "data3": "难度", - "data4": "" + "insert": 0 }, { "id": 84, - "insert": 1, - "desc": "普通塔达到XX层(检查最高难度记录是否达到了此难度,达到则完成)", - "data1": "层数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 85, - "insert": 1, - "desc": "赛季塔达到XX层(检查最高难度记录是否达到了此难度,达到则完成)", - "data1": "层数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 86, - "insert": 1, - "desc": "本赛季的赛季塔达到XX层(检查本赛季最高难度记录是否达到了此难度,达到则完成)", - "data1": "层数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 87, - "insert": 0, - "desc": "发现月之秘境N次(从接到任务开始,发现一次则进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 88, - "insert": 0, - "desc": "完成月之秘境N次(从接到任务开始,打完一个月之秘境则进度+1(耗尽BOSS挑战次数))", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 89, - "insert": 0, - "desc": "任意招募N次(从接到任务开始,普通招募和阵营招募都算,单抽1次,10连抽算10次)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 90, - "insert": 0, - "desc": "进行N次普通招募10连抽(从接到任务开始,单抽点10次不算,10连抽才进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 91, - "insert": 0, - "desc": "进行N次阵营招募10连抽(从接到任务开始,单抽点10次不算,10连抽才进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 92, - "insert": 0, - "desc": "强化装备N次(从接到任务开始,强化任意装备,失败和成功进度都+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 93, - "insert": 0, - "desc": "穿戴一套强化到N级的A套装(记录A套装中每个部位的最高强化等级,并将这些强化等级中最低的数值计入进度,如果达到了任务所需的强化等级则完成任务。)", - "data1": "次数", - "data2": "套装id", - "data3": "强化等级", - "data4": "" + "insert": 0 }, { "id": 94, - "insert": 0, - "desc": "装备附魔N次(历史)(从创号开始记录,附魔成功进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 95, - "insert": 0, - "desc": "装备洗练N次(历史)(从创号开始记录,洗练成功进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 96, - "insert": 0, - "desc": "强化失败N次(从接到任务开始,强化失败进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 97, - "insert": 0, - "desc": "获得X星X套装的装备N件(时段)(从接到任务开始,每获得1件X星X套装的装备则进度+1)", - "data1": "数量", - "data2": "星级", - "data3": "套装id", - "data4": "" + "insert": 0 }, { "id": 98, - "insert": 0, - "desc": "穿戴N套强化A级的装备(打开任务时,检查英雄身上的装备的最低等级,当最低等级超过A则任务进度+1。)", - "data1": "数量", - "data2": "等级", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 99, - "insert": 0, - "desc": "获得N个初始属性大于等于A条的B星装备(从接到任务开始,每次获得强化为0级的A星装备时判断属性条目,大于或等于B进度+1)", - "data1": "装备数量", - "data2": "初始条目数量", - "data3": "星级", - "data4": "" + "insert": 0 }, { "id": 100, - "insert": 1, - "desc": "职业武器强化成功N次(历史)(从创号开始记录,强化成功进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 101, - "insert": 1, - "desc": "获得X星职业武器N件(历史)(从创号开始记录,每获得1件X星职业武器则进度+1)", - "data1": "数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 1 }, { "id": 102, - "insert": 0, - "desc": "阵营饰品强化成功N次(历史)(从创号开始记录,强化成功进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 103, - "insert": 0, - "desc": "获得X星阵营饰品N件(历史)(从创号开始记录,每获得1件X星阵营饰品则进度+1)", - "data1": "数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 104, - "insert": 0, - "desc": "消费N个钻石(历史)(从创号开始记录,每次消耗钻石增加消耗额的进度)", - "data1": "数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 105, - "insert": 0, - "desc": "商店刷新N次(从接到任务开始,每次刷新商店进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 106, - "insert": 0, - "desc": "跨服聊天发言N次(从接到任务开始,每次跨服发言成功进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 108, - "insert": 0, - "desc": "助战英雄被使用X次(从接到任务开始,每被使用1次则进度+1)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 109, - "insert": 0, - "desc": "加入公会(打开任务时,检查是否加入了公会,加入则完成)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 110, - "insert": 0, - "desc": "激活X个英雄图鉴(打开任务时,检查英雄图鉴激活数量并计入进度,达到了任务所需个数则完成任务。)", - "data1": "数量", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 111, - "insert": 0, - "desc": "拥有N个X级英雄(打开任务时,检查达到X级的英雄数量,达到任务所需个数则完成任务,)", - "data1": "数量", - "data2": "等级", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 112, - "insert": 0, - "desc": "养成N个X级英雄(从接到任务开始,英雄升级时,如果英雄的初始等级=指定数目,任务便算完成)", - "data1": "温度数目", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 177, - "insert": 0, - "desc": "解锁X个新图纸(从接取任务开始,在铁匠铺每解锁任意阶段的一个新图纸,进度便加一)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 179, - "insert": 0, - "desc": "解锁X阶段装备新图纸X个(接取任务后开始记录,在铁匠铺对应阶段的一个新图纸,进度便加一)", - "data1": "图纸个数", - "data2": "对应阶段", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 180, - "insert": 0, - "desc": "在X维京副本内使用好友助战X次(接取任务后开始记录,在对应副本内使用好友助战每有1次,进度便加一)", - "data1": "使用助战次数", - "data2": "副本类型", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 181, - "insert": 0, - "desc": "X维京副本X难度自动战斗X次(接取任务后开始记录,在对应副本的指定难度内,使用自动战斗每有1次,进度便加一)", - "data1": "自动战斗次数", - "data2": "副本类型", - "data3": "副本难度", - "data4": "" + "insert": 0 }, { "id": 182, - "insert": 0, - "desc": "打赢武馆内踢馆X次(接取任务后开始记录,每赢得一次踢馆战斗的胜利,进度便加一)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 183, - "insert": 0, - "desc": "去好友武馆踢馆X次(接取任务后开始记录,每次在好友武馆开启一场踢馆,便进度加一)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 184, - "insert": 0, - "desc": "使用好友武馆木桩X次(接取任务后,每次使用好友的木桩训练英雄一次,进度便加一)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 185, - "insert": 0, - "desc": "完成X次每日1健(接取任务后,每完成1次每日1健,便进度加一)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 186, - "insert": 0, - "desc": "武馆的派遣悬赏X次(接取任务后开始计算,当玩家的派遣完成1次,进度便加一,不领奖也算一次,只要倒计时结束即可)", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 187, - "insert": 0, - "desc": "搜集X道具Y个", - "data1": "个数", - "data2": "itemID", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 188, - "insert": 0, - "desc": "玩家创建1个工会", - "data1": "次数", - "data2": "", - "data3": "", - "data4": "" + "insert": 0 }, { "id": 20001, - "insert": 0, - "desc": "触发指定剧情", - "data1": "完成次数", - "data2": "NPC的ID,做寻路用,填0为没有", - "data3": "剧情ID,读取worldstory表", - "data4": "" + "insert": 0 }, { "id": 20002, - "insert": 0, - "desc": "获取对应道具", - "data1": "完成次数", - "data2": "NPC的ID,做寻路用,填0为没有", - "data3": "道具ID,读取item表", - "data4": "" + "insert": 0 } ] \ No newline at end of file diff --git a/bin/json/game_buzkashireward.json b/bin/json/game_buzkashireward.json index 856a5fe9c..6bebcdf12 100644 --- a/bin/json/game_buzkashireward.json +++ b/bin/json/game_buzkashireward.json @@ -54,7 +54,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 }, { diff --git a/bin/json/game_caravancity.json b/bin/json/game_caravancity.json index 9dc391576..c6b566330 100644 --- a/bin/json/game_caravancity.json +++ b/bin/json/game_caravancity.json @@ -8,7 +8,7 @@ "cityticket": [ { "a": "item", - "t": "141002", + "t": "10000005", "n": 1 } ], @@ -60,7 +60,7 @@ "cityticket": [ { "a": "item", - "t": "141002", + "t": "10000005", "n": 1 } ], @@ -113,7 +113,7 @@ "cityticket": [ { "a": "item", - "t": "141002", + "t": "10000005", "n": 1 } ], @@ -166,7 +166,7 @@ "cityticket": [ { "a": "item", - "t": "141002", + "t": "10000005", "n": 1 } ], @@ -218,7 +218,7 @@ "cityticket": [ { "a": "item", - "t": "141002", + "t": "10000005", "n": 1 } ], diff --git a/bin/json/game_caravanlv.json b/bin/json/game_caravanlv.json index 8abe0a1fb..6108a09f0 100644 --- a/bin/json/game_caravanlv.json +++ b/bin/json/game_caravanlv.json @@ -6,7 +6,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 40 }, "moneynumtop": { @@ -25,7 +25,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 45 }, "moneynumtop": { @@ -50,7 +50,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 50 }, "moneynumtop": { @@ -75,7 +75,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 55 }, "moneynumtop": { @@ -100,7 +100,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 60 }, "moneynumtop": { @@ -125,7 +125,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 65 }, "moneynumtop": { @@ -150,7 +150,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 70 }, "moneynumtop": { @@ -175,7 +175,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 75 }, "moneynumtop": { @@ -200,7 +200,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 80 }, "moneynumtop": { @@ -225,7 +225,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 85 }, "moneynumtop": { @@ -250,7 +250,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 90 }, "moneynumtop": { @@ -275,7 +275,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 95 }, "moneynumtop": { @@ -300,7 +300,7 @@ "bagtagnum": 100, "tickettop": { "a": "item", - "t": "141002", + "t": "10000005", "n": 100 }, "moneynumtop": { diff --git a/bin/json/game_caravanrvent.json b/bin/json/game_caravanrvent.json deleted file mode 100644 index 26fba1d9c..000000000 --- a/bin/json/game_caravanrvent.json +++ /dev/null @@ -1,33 +0,0 @@ -[ - { - "id": 1001, - "eventtype": 1, - "mustdo": 1, - "citystory": 101, - "citynormal": 102, - "cityabnormal": 103, - "worldtask": 210, - "traintips": { - "key": "caravan_caravan_event_traintips_1", - "text": "列车上来了外人,这个人看上去有很急切的事情,我们必须先解决这个再离开这里。" - }, - "trainstory": 888, - "trainstorybad": 777, - "trainstorygood": 888, - "reword": [ - { - "a": "item", - "t": "141001", - "n": 10 - } - ], - "exreword": [ - 10001 - ], - "unreword": [ - 1, - 40 - ], - "eventtime": 500 - } -] \ No newline at end of file diff --git a/bin/json/game_chatsystem.json b/bin/json/game_chatsystem.json index 3a63c3f3b..fcb00baaa 100644 --- a/bin/json/game_chatsystem.json +++ b/bin/json/game_chatsystem.json @@ -5,7 +5,7 @@ "type": 1, "datatype": 0, "text": { - "key": "chat_expression_text_1", + "key": "chat_system_text_1", "text": "【system】 Good afternoon !" }, "data": 0, @@ -28,7 +28,7 @@ "type": 1, "datatype": 0, "text": { - "key": "chat_expression_text_2", + "key": "chat_system_text_2", "text": "【system】 Good afternoon !" }, "data": 0, @@ -49,7 +49,7 @@ "type": 1, "datatype": 0, "text": { - "key": "chat_expression_text_3", + "key": "chat_system_text_3", "text": "【system】 Good afternoon !" }, "data": 0, @@ -70,7 +70,7 @@ "type": 2, "datatype": 0, "text": { - "key": "chat_expression_text_4", + "key": "chat_system_text_4", "text": "【system】 Welcome Dream Works !" }, "data": 0, @@ -85,7 +85,7 @@ "type": 3, "datatype": 2, "text": { - "key": "chat_expression_text_5", + "key": "chat_system_text_5", "text": "【hearsay】%v through unremitting efforts, the %vhas been strengthened to level 13!" }, "data": 13, @@ -100,7 +100,7 @@ "type": 3, "datatype": 2, "text": { - "key": "chat_expression_text_6", + "key": "chat_system_text_6", "text": "【hearsay】%v through unremitting efforts, the %vhas been strengthened to level 14!" }, "data": 14, @@ -115,7 +115,7 @@ "type": 3, "datatype": 2, "text": { - "key": "chat_expression_text_7", + "key": "chat_system_text_7", "text": "【hearsay】%v through unremitting efforts, the %vhas been strengthened to level 15!" }, "data": 15, @@ -130,7 +130,7 @@ "type": 4, "datatype": 1, "text": { - "key": "chat_expression_text_8", + "key": "chat_system_text_8", "text": "【hearsay】%v breakthrough 100 floors of the tower!" }, "data": 100, @@ -145,7 +145,7 @@ "type": 5, "datatype": 0, "text": { - "key": "chat_expression_text_9", + "key": "chat_system_text_9", "text": "服务器即将维护,请及时下线避免数据丢失!" }, "data": 5, @@ -160,7 +160,7 @@ "type": 6, "datatype": 1, "text": { - "key": "chat_expression_text_10", + "key": "chat_system_text_10", "text": "【传闻】%v通关了赛季塔50层!" }, "data": 50, @@ -175,7 +175,7 @@ "type": 7, "datatype": 3, "text": { - "key": "chat_expression_text_11", + "key": "chat_system_text_11", "text": "【传闻】%v已经%v培养至60级!" }, "data": 60, @@ -190,7 +190,7 @@ "type": 8, "datatype": 3, "text": { - "key": "chat_expression_text_12", + "key": "chat_system_text_12", "text": "【传闻】%v已经%v培养至6星!" }, "data": 5, @@ -205,7 +205,7 @@ "type": 9, "datatype": 3, "text": { - "key": "chat_expression_text_13", + "key": "chat_system_text_13", "text": "【传闻】%v已经%v技能培养至满级!" }, "data": 5, @@ -220,7 +220,7 @@ "type": 10, "datatype": 3, "text": { - "key": "chat_expression_text_14", + "key": "chat_system_text_14", "text": "【传闻】%v已经%v共鸣至满级!" }, "data": 5, @@ -235,7 +235,7 @@ "type": 11, "datatype": 3, "text": { - "key": "chat_expression_text_15", + "key": "chat_system_text_15", "text": "【传闻】%v已经%v觉醒至满级!" }, "data": 5, @@ -250,7 +250,7 @@ "type": 12, "datatype": 1, "text": { - "key": "chat_expression_text_16", + "key": "chat_system_text_16", "text": "【传闻】%v已经达到了60级!" }, "data": 60, @@ -265,7 +265,7 @@ "type": 13, "datatype": 3, "text": { - "key": "chat_expression_text_17", + "key": "chat_system_text_17", "text": "【传闻】%v在招募中获得了v%!" }, "data": 5, @@ -280,7 +280,7 @@ "type": 14, "datatype": 1, "text": { - "key": "chat_expression_text_18", + "key": "chat_system_text_18", "text": "【传闻】%v通关了维京远征火焰泰坦难度10!" }, "data": 10, @@ -295,7 +295,7 @@ "type": 14, "datatype": 1, "text": { - "key": "chat_expression_text_19", + "key": "chat_system_text_19", "text": "【传闻】%v通关了维京远征冰霜泰坦难度10!" }, "data": 10, @@ -310,7 +310,7 @@ "type": 14, "datatype": 1, "text": { - "key": "chat_expression_text_20", + "key": "chat_system_text_20", "text": "【传闻】%v通关了维京远征森林泰坦难度10!" }, "data": 10, @@ -325,7 +325,7 @@ "type": 14, "datatype": 1, "text": { - "key": "chat_expression_text_21", + "key": "chat_system_text_21", "text": "【传闻】%v通关了维京远征冰霜泰坦(武器)难度10!" }, "data": 10, @@ -340,7 +340,7 @@ "type": 14, "datatype": 1, "text": { - "key": "chat_expression_text_22", + "key": "chat_system_text_22", "text": "【传闻】%v通关了维京远征森林泰坦(饰品)难度10!" }, "data": 10, @@ -355,7 +355,7 @@ "type": 15, "datatype": 1, "text": { - "key": "chat_expression_text_23", + "key": "chat_system_text_23", "text": "【传闻】%v通关了狩猎巨型猩猩难度10!" }, "data": 10, @@ -370,7 +370,7 @@ "type": 15, "datatype": 1, "text": { - "key": "chat_expression_text_24", + "key": "chat_system_text_24", "text": "【传闻】%v通关了狩猎火龙难度10!" }, "data": 10, @@ -385,7 +385,7 @@ "type": 15, "datatype": 1, "text": { - "key": "chat_expression_text_25", + "key": "chat_system_text_25", "text": "【传闻】%v通关了狩猎大厨难度10!" }, "data": 10, @@ -400,7 +400,7 @@ "type": 15, "datatype": 1, "text": { - "key": "chat_expression_text_26", + "key": "chat_system_text_26", "text": "【传闻】%v通关了狩猎太空海星难度10!" }, "data": 10, diff --git a/bin/json/game_combatlevel.json b/bin/json/game_combatlevel.json index 351ed464b..1ffa69ac2 100644 --- a/bin/json/game_combatlevel.json +++ b/bin/json/game_combatlevel.json @@ -17,7 +17,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -29,7 +29,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -55,7 +55,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -67,7 +67,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -93,7 +93,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -105,7 +105,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -131,7 +131,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -143,7 +143,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -169,7 +169,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -181,7 +181,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -207,7 +207,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -219,7 +219,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -245,7 +245,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -257,7 +257,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -283,7 +283,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -295,7 +295,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -321,7 +321,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -333,7 +333,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -359,7 +359,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -371,7 +371,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], diff --git a/bin/json/game_dispatch_battle.json b/bin/json/game_dispatch_battle.json index d971c0c04..2e44332e9 100644 --- a/bin/json/game_dispatch_battle.json +++ b/bin/json/game_dispatch_battle.json @@ -26,7 +26,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -70,7 +70,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], diff --git a/bin/json/game_dispatch_task.json b/bin/json/game_dispatch_task.json index 0f5f3ae6c..48e0b6737 100644 --- a/bin/json/game_dispatch_task.json +++ b/bin/json/game_dispatch_task.json @@ -8,7 +8,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 166, + "tasktime": 132, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_1", "text": "这是属于阿宝的专属委托" @@ -56,7 +56,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 142, + "tasktime": 152, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_2", "text": "这是属于波比的专属委托" @@ -104,7 +104,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 170, + "tasktime": 175, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_3", "text": "这是属于悍娇虎的专属委托" @@ -152,7 +152,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 88, + "tasktime": 130, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_4", "text": "这是属于师父的专属委托" @@ -200,7 +200,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 96, + "tasktime": 89, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_5", "text": "这是属于阿宝的专属委托" @@ -248,7 +248,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 104, + "tasktime": 72, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_6", "text": "这是属于波比的专属委托" @@ -296,7 +296,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 102, + "tasktime": 173, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_7", "text": "这是属于悍娇虎的专属委托" @@ -344,7 +344,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 84, + "tasktime": 106, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_8", "text": "这是属于师父的专属委托" @@ -392,7 +392,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 131, + "tasktime": 81, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_9", "text": "这是属于阿宝的专属委托" @@ -440,7 +440,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 164, + "tasktime": 157, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_10", "text": "这是属于波比的专属委托" @@ -488,7 +488,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 112, + "tasktime": 115, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_11", "text": "这是属于悍娇虎的专属委托" @@ -536,7 +536,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 135, + "tasktime": 158, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_12", "text": "这是属于师父的专属委托" @@ -584,7 +584,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 68, + "tasktime": 100, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_13", "text": "这是属于阿宝的专属委托" @@ -632,7 +632,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 163, + "tasktime": 152, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_14", "text": "这是属于波比的专属委托" @@ -680,7 +680,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 159, + "tasktime": 100, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_15", "text": "这是属于悍娇虎的专属委托" @@ -728,7 +728,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 60, + "tasktime": 177, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_16", "text": "这是属于师父的专属委托" @@ -776,7 +776,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 100, + "tasktime": 68, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_17", "text": "这是属于阿宝的专属委托" @@ -824,7 +824,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 123, + "tasktime": 124, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_18", "text": "这是属于波比的专属委托" @@ -872,7 +872,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 104, + "tasktime": 118, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_19", "text": "这是属于悍娇虎的专属委托" @@ -920,7 +920,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 110, + "tasktime": 163, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_20", "text": "这是属于师父的专属委托" @@ -968,7 +968,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 150, + "tasktime": 67, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_21", "text": "这是属于阿宝的专属委托" @@ -1016,7 +1016,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 164, + "tasktime": 65, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_22", "text": "这是属于波比的专属委托" @@ -1064,7 +1064,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 63, + "tasktime": 86, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_23", "text": "这是属于悍娇虎的专属委托" @@ -1112,7 +1112,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 76, + "tasktime": 73, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_24", "text": "这是属于师父的专属委托" @@ -1160,7 +1160,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 130, + "tasktime": 61, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_25", "text": "这是属于阿宝的专属委托" @@ -1208,7 +1208,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 71, + "tasktime": 75, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_26", "text": "这是属于波比的专属委托" @@ -1256,7 +1256,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 101, + "tasktime": 172, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_27", "text": "这是属于悍娇虎的专属委托" @@ -1304,7 +1304,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 94, + "tasktime": 140, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_28", "text": "这是属于师父的专属委托" @@ -1352,7 +1352,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 168, + "tasktime": 80, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_29", "text": "这是属于阿宝的专属委托" @@ -1400,7 +1400,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 83, + "tasktime": 85, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_30", "text": "这是属于波比的专属委托" @@ -1448,7 +1448,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 109, + "tasktime": 112, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_31", "text": "这是属于悍娇虎的专属委托" @@ -1496,7 +1496,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 63, + "tasktime": 151, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_32", "text": "这是属于师父的专属委托" @@ -1544,7 +1544,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 137, + "tasktime": 88, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_33", "text": "这是属于阿宝的专属委托" @@ -1592,7 +1592,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 68, + "tasktime": 111, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_34", "text": "这是属于波比的专属委托" @@ -1640,7 +1640,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 153, + "tasktime": 64, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_35", "text": "这是属于悍娇虎的专属委托" @@ -1688,7 +1688,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 113, + "tasktime": 117, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_36", "text": "这是属于师父的专属委托" @@ -1736,7 +1736,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 170, + "tasktime": 142, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_37", "text": "这是属于阿宝的专属委托" @@ -1784,7 +1784,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 133, + "tasktime": 87, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_38", "text": "这是属于波比的专属委托" @@ -1832,7 +1832,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 126, + "tasktime": 178, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_39", "text": "这是属于悍娇虎的专属委托" @@ -1880,7 +1880,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 103, + "tasktime": 76, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_40", "text": "这是属于师父的专属委托" @@ -1928,7 +1928,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 62, + "tasktime": 105, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_41", "text": "这是属于阿宝的专属委托" @@ -1976,7 +1976,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 170, + "tasktime": 60, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_42", "text": "这是属于波比的专属委托" @@ -2024,7 +2024,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 138, + "tasktime": 63, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_43", "text": "这是属于悍娇虎的专属委托" @@ -2072,7 +2072,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 158, + "tasktime": 92, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_44", "text": "这是属于师父的专属委托" @@ -2120,7 +2120,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 152, + "tasktime": 100, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_45", "text": "这是属于阿宝的专属委托" @@ -2168,7 +2168,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 117, + "tasktime": 109, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_46", "text": "这是属于波比的专属委托" @@ -2216,7 +2216,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 79, + "tasktime": 96, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_47", "text": "这是属于悍娇虎的专属委托" @@ -2264,7 +2264,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 167, + "tasktime": 141, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_48", "text": "这是属于师父的专属委托" @@ -2312,7 +2312,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 154, + "tasktime": 167, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_49", "text": "这是属于阿宝的专属委托" @@ -2360,7 +2360,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 75, + "tasktime": 162, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_50", "text": "这是属于波比的专属委托" @@ -2408,7 +2408,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 115, + "tasktime": 89, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_51", "text": "这是属于悍娇虎的专属委托" @@ -2456,7 +2456,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 145, + "tasktime": 159, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_52", "text": "这是属于师父的专属委托" @@ -2552,7 +2552,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 97, + "tasktime": 122, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_54", "text": "这是属于波比的专属委托" @@ -2600,7 +2600,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 100, + "tasktime": 67, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_55", "text": "这是属于悍娇虎的专属委托" @@ -2648,7 +2648,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 127, + "tasktime": 88, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_56", "text": "这是属于师父的专属委托" @@ -2696,7 +2696,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 153, + "tasktime": 103, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_57", "text": "这是属于阿宝的专属委托" @@ -2744,7 +2744,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 173, + "tasktime": 159, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_58", "text": "这是属于波比的专属委托" @@ -2792,7 +2792,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 140, + "tasktime": 72, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_59", "text": "这是属于悍娇虎的专属委托" @@ -2840,7 +2840,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 157, + "tasktime": 66, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_60", "text": "这是属于师父的专属委托" @@ -2888,7 +2888,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 164, + "tasktime": 167, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_61", "text": "这是属于阿宝的专属委托" @@ -2936,7 +2936,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 145, + "tasktime": 61, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_62", "text": "这是属于波比的专属委托" @@ -2984,7 +2984,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 148, + "tasktime": 77, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_63", "text": "这是属于悍娇虎的专属委托" @@ -3032,7 +3032,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 164, + "tasktime": 169, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_64", "text": "这是属于师父的专属委托" @@ -3080,7 +3080,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 68, + "tasktime": 142, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_65", "text": "这是属于阿宝的专属委托" @@ -3128,7 +3128,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 92, + "tasktime": 73, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_66", "text": "这是属于波比的专属委托" @@ -3176,7 +3176,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 91, + "tasktime": 90, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_67", "text": "这是属于悍娇虎的专属委托" @@ -3224,7 +3224,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 157, + "tasktime": 82, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_68", "text": "这是属于师父的专属委托" @@ -3272,7 +3272,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 65, + "tasktime": 142, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_69", "text": "这是属于阿宝的专属委托" @@ -3320,7 +3320,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 152, + "tasktime": 147, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_70", "text": "这是属于波比的专属委托" @@ -3368,7 +3368,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 99, + "tasktime": 162, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_71", "text": "这是属于悍娇虎的专属委托" @@ -3416,7 +3416,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 84, + "tasktime": 110, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_72", "text": "这是属于师父的专属委托" @@ -3464,7 +3464,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 142, + "tasktime": 180, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_73", "text": "这是属于阿宝的专属委托" @@ -3512,7 +3512,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 105, + "tasktime": 139, "tasktxt": { "key": "pandamas_pandamas_dispatch_tasktxt_74", "text": "这是属于波比的专属委托" diff --git a/bin/json/game_dreamlandboos.json b/bin/json/game_dreamlandboos.json index 6e835fcfe..0df3d60b7 100644 --- a/bin/json/game_dreamlandboos.json +++ b/bin/json/game_dreamlandboos.json @@ -7,7 +7,7 @@ "prize": [ { "a": "item", - "t": "90001", + "t": "11025001", "n": 1 } ], @@ -19,14 +19,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 3 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 2 } ] @@ -39,7 +39,7 @@ "prize": [ { "a": "item", - "t": "535001", + "t": "11035001", "n": 1 } ], @@ -51,14 +51,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] diff --git a/bin/json/game_drop.json b/bin/json/game_drop.json index 5fdee905f..359e0f967 100644 --- a/bin/json/game_drop.json +++ b/bin/json/game_drop.json @@ -804,7 +804,7 @@ "prize": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 } ], @@ -818,7 +818,7 @@ "prize": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 } ], @@ -832,7 +832,7 @@ "prize": [ { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 } ], @@ -846,7 +846,7 @@ "prize": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 } ], @@ -860,7 +860,7 @@ "prize": [ { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 } ], @@ -874,7 +874,7 @@ "prize": [ { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -2260,7 +2260,7 @@ "prize": [ { "a": "item", - "t": "524004", + "t": "11024004", "n": 100 } ], @@ -2274,7 +2274,7 @@ "prize": [ { "a": "item", - "t": "525001", + "t": "11025001", "n": 100 } ], @@ -2288,7 +2288,7 @@ "prize": [ { "a": "item", - "t": "525004", + "t": "11025004", "n": 100 } ], @@ -2302,7 +2302,7 @@ "prize": [ { "a": "item", - "t": "524008", + "t": "11024008", "n": 100 } ], @@ -2316,7 +2316,7 @@ "prize": [ { "a": "item", - "t": "524003", + "t": "11024003", "n": 100 } ], @@ -2330,7 +2330,7 @@ "prize": [ { "a": "item", - "t": "515005", + "t": "11015005", "n": 100 } ], @@ -2344,7 +2344,7 @@ "prize": [ { "a": "item", - "t": "514001", + "t": "11014001", "n": 100 } ], @@ -2358,7 +2358,7 @@ "prize": [ { "a": "item", - "t": "514003", + "t": "11014003", "n": 100 } ], @@ -2372,7 +2372,7 @@ "prize": [ { "a": "item", - "t": "534006", + "t": "11034006", "n": 100 } ], @@ -2386,7 +2386,7 @@ "prize": [ { "a": "item", - "t": "534002", + "t": "11034002", "n": 100 } ], @@ -2400,7 +2400,7 @@ "prize": [ { "a": "item", - "t": "524002", + "t": "11024002", "n": 100 } ], @@ -2414,7 +2414,7 @@ "prize": [ { "a": "item", - "t": "535001", + "t": "11035001", "n": 100 } ], @@ -2428,7 +2428,7 @@ "prize": [ { "a": "item", - "t": "515004", + "t": "11015004", "n": 100 } ], @@ -2442,7 +2442,7 @@ "prize": [ { "a": "item", - "t": "544005", + "t": "11044005", "n": 100 } ], @@ -2456,7 +2456,7 @@ "prize": [ { "a": "item", - "t": "544006", + "t": "11044006", "n": 100 } ], diff --git a/bin/json/game_enchantboss.json b/bin/json/game_enchantboss.json index a7187a278..2de95fcf6 100644 --- a/bin/json/game_enchantboss.json +++ b/bin/json/game_enchantboss.json @@ -98,14 +98,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -209,14 +209,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -320,14 +320,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -431,14 +431,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -542,14 +542,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -653,14 +653,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -764,14 +764,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -875,14 +875,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -986,14 +986,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1097,14 +1097,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1208,14 +1208,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1319,14 +1319,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1430,14 +1430,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1541,14 +1541,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1652,14 +1652,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1763,14 +1763,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1874,14 +1874,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -1985,14 +1985,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -2096,14 +2096,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -2207,14 +2207,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] @@ -2318,14 +2318,14 @@ "ps_consume": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 6 } ], "ps_mg": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 5 } ] diff --git a/bin/json/game_equipattrlibrary.json b/bin/json/game_equipattrlibrary.json deleted file mode 100644 index 203e25730..000000000 --- a/bin/json/game_equipattrlibrary.json +++ /dev/null @@ -1,9200 +0,0 @@ -[ - { - "key": 1, - "libraryid": 1001, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 2, - "libraryid": 1002, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 3, - "libraryid": 1003, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 4, - "libraryid": 1004, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 5, - "libraryid": 1005, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 6, - "libraryid": 1006, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 7, - "libraryid": 1101, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 8, - "libraryid": 1102, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 9, - "libraryid": 1103, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 10, - "libraryid": 1104, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 11, - "libraryid": 1105, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 12, - "libraryid": 1106, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 13, - "libraryid": 1101, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 14, - "libraryid": 1102, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 15, - "libraryid": 1103, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 16, - "libraryid": 1104, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 17, - "libraryid": 1105, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 18, - "libraryid": 1106, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 19, - "libraryid": 1101, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 20, - "libraryid": 1102, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 21, - "libraryid": 1103, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 22, - "libraryid": 1104, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 23, - "libraryid": 1105, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 24, - "libraryid": 1106, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 25, - "libraryid": 1101, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 26, - "libraryid": 1102, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 27, - "libraryid": 1103, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 28, - "libraryid": 1104, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 29, - "libraryid": 1105, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 30, - "libraryid": 1106, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 31, - "libraryid": 1101, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 32, - "libraryid": 1102, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 33, - "libraryid": 1103, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 34, - "libraryid": 1104, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 35, - "libraryid": 1105, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 36, - "libraryid": 1106, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 37, - "libraryid": 1101, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 38, - "libraryid": 1102, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 39, - "libraryid": 1103, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 40, - "libraryid": 1104, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 41, - "libraryid": 1105, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 42, - "libraryid": 1106, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 43, - "libraryid": 1101, - "attrkey": "cri", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 44, - "libraryid": 1102, - "attrkey": "cri", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 45, - "libraryid": 1103, - "attrkey": "cri", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 46, - "libraryid": 1104, - "attrkey": "cri", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 47, - "libraryid": 1105, - "attrkey": "cri", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 48, - "libraryid": 1106, - "attrkey": "cri", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 49, - "libraryid": 1101, - "attrkey": "cridam", - "attrvar": 2, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 50, - "libraryid": 1102, - "attrkey": "cridam", - "attrvar": 2, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 51, - "libraryid": 1103, - "attrkey": "cridam", - "attrvar": 2, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 52, - "libraryid": 1104, - "attrkey": "cridam", - "attrvar": 2, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 53, - "libraryid": 1105, - "attrkey": "cridam", - "attrvar": 2, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 54, - "libraryid": 1106, - "attrkey": "cridam", - "attrvar": 2, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 55, - "libraryid": 1201, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 56, - "libraryid": 1202, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 57, - "libraryid": 1203, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 58, - "libraryid": 1204, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 59, - "libraryid": 1205, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 60, - "libraryid": 1206, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 61, - "libraryid": 1301, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 62, - "libraryid": 1302, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 63, - "libraryid": 1303, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 64, - "libraryid": 1304, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 65, - "libraryid": 1305, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 66, - "libraryid": 1306, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 67, - "libraryid": 1301, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 68, - "libraryid": 1302, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 69, - "libraryid": 1303, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 70, - "libraryid": 1304, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 71, - "libraryid": 1305, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 72, - "libraryid": 1306, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 73, - "libraryid": 1301, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 74, - "libraryid": 1302, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 75, - "libraryid": 1303, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 76, - "libraryid": 1304, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 77, - "libraryid": 1305, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 78, - "libraryid": 1306, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 79, - "libraryid": 1301, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 80, - "libraryid": 1302, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 81, - "libraryid": 1303, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 82, - "libraryid": 1304, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 83, - "libraryid": 1305, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 84, - "libraryid": 1306, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 85, - "libraryid": 1301, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 86, - "libraryid": 1302, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 87, - "libraryid": 1303, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 88, - "libraryid": 1304, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 89, - "libraryid": 1305, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 90, - "libraryid": 1306, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 91, - "libraryid": 1301, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 92, - "libraryid": 1302, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 93, - "libraryid": 1303, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 94, - "libraryid": 1304, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 95, - "libraryid": 1305, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 96, - "libraryid": 1306, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 97, - "libraryid": 1301, - "attrkey": "effhit", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 98, - "libraryid": 1302, - "attrkey": "effhit", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 99, - "libraryid": 1303, - "attrkey": "effhit", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 100, - "libraryid": 1304, - "attrkey": "effhit", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 101, - "libraryid": 1305, - "attrkey": "effhit", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 102, - "libraryid": 1306, - "attrkey": "effhit", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 103, - "libraryid": 1301, - "attrkey": "effre", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 104, - "libraryid": 1302, - "attrkey": "effre", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 105, - "libraryid": 1303, - "attrkey": "effre", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 106, - "libraryid": 1304, - "attrkey": "effre", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 107, - "libraryid": 1305, - "attrkey": "effre", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 108, - "libraryid": 1306, - "attrkey": "effre", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 109, - "libraryid": 1401, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 110, - "libraryid": 1402, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 111, - "libraryid": 1403, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 112, - "libraryid": 1404, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 113, - "libraryid": 1405, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 114, - "libraryid": 1406, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 115, - "libraryid": 1501, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 116, - "libraryid": 1502, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 117, - "libraryid": 1503, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 118, - "libraryid": 1504, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 119, - "libraryid": 1505, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 120, - "libraryid": 1506, - "attrkey": "hp", - "attrvar": 200, - "attrvar_correct": 50, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 121, - "libraryid": 1501, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 122, - "libraryid": 1502, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 123, - "libraryid": 1503, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 124, - "libraryid": 1504, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 125, - "libraryid": 1505, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 126, - "libraryid": 1506, - "attrkey": "atk", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 127, - "libraryid": 1501, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 128, - "libraryid": 1502, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 129, - "libraryid": 1503, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 130, - "libraryid": 1504, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 131, - "libraryid": 1505, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 132, - "libraryid": 1506, - "attrkey": "def", - "attrvar": 20, - "attrvar_correct": 5, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 133, - "libraryid": 1501, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 134, - "libraryid": 1502, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 135, - "libraryid": 1503, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 136, - "libraryid": 1504, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 137, - "libraryid": 1505, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 138, - "libraryid": 1506, - "attrkey": "hppro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 139, - "libraryid": 1501, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 140, - "libraryid": 1502, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 141, - "libraryid": 1503, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 142, - "libraryid": 1504, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 143, - "libraryid": 1505, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 144, - "libraryid": 1506, - "attrkey": "atkpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 145, - "libraryid": 1501, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 146, - "libraryid": 1502, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 147, - "libraryid": 1503, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 148, - "libraryid": 1504, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 149, - "libraryid": 1505, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 150, - "libraryid": 1506, - "attrkey": "defpro", - "attrvar": 3, - "attrvar_correct": 1, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 151, - "libraryid": 1501, - "attrkey": "speed", - "attrvar": 5, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 152, - "libraryid": 1502, - "attrkey": "speed", - "attrvar": 5, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 153, - "libraryid": 1503, - "attrkey": "speed", - "attrvar": 5, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 154, - "libraryid": 1504, - "attrkey": "speed", - "attrvar": 5, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 155, - "libraryid": 1505, - "attrkey": "speed", - "attrvar": 5, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 156, - "libraryid": 1506, - "attrkey": "speed", - "attrvar": 5, - "attrvar_correct": 2, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 157, - "libraryid": 2001, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 158, - "libraryid": 2002, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 159, - "libraryid": 2003, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 160, - "libraryid": 2004, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 161, - "libraryid": 2005, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 162, - "libraryid": 2006, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 163, - "libraryid": 2001, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 164, - "libraryid": 2002, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 165, - "libraryid": 2003, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 166, - "libraryid": 2004, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 167, - "libraryid": 2005, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 168, - "libraryid": 2006, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 169, - "libraryid": 2001, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 170, - "libraryid": 2002, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 171, - "libraryid": 2003, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 172, - "libraryid": 2004, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 173, - "libraryid": 2005, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 174, - "libraryid": 2006, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 175, - "libraryid": 2001, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 176, - "libraryid": 2002, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 177, - "libraryid": 2003, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 178, - "libraryid": 2004, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 179, - "libraryid": 2005, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 180, - "libraryid": 2006, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 181, - "libraryid": 2001, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 182, - "libraryid": 2002, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 183, - "libraryid": 2003, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 184, - "libraryid": 2004, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 185, - "libraryid": 2005, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 186, - "libraryid": 2006, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 187, - "libraryid": 2001, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 188, - "libraryid": 2002, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 189, - "libraryid": 2003, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 190, - "libraryid": 2004, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 191, - "libraryid": 2005, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 192, - "libraryid": 2006, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 193, - "libraryid": 2001, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 194, - "libraryid": 2002, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 195, - "libraryid": 2003, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 196, - "libraryid": 2004, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 197, - "libraryid": 2005, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 198, - "libraryid": 2006, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 199, - "libraryid": 2001, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 200, - "libraryid": 2002, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 201, - "libraryid": 2003, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 202, - "libraryid": 2004, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 203, - "libraryid": 2005, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 204, - "libraryid": 2006, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 205, - "libraryid": 2001, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 206, - "libraryid": 2002, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 207, - "libraryid": 2003, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 208, - "libraryid": 2004, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 209, - "libraryid": 2005, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 210, - "libraryid": 2006, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 211, - "libraryid": 2001, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 212, - "libraryid": 2002, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 213, - "libraryid": 2003, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 214, - "libraryid": 2004, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 215, - "libraryid": 2005, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 216, - "libraryid": 2006, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 217, - "libraryid": 2001, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 218, - "libraryid": 2002, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 219, - "libraryid": 2003, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 220, - "libraryid": 2004, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 221, - "libraryid": 2005, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 222, - "libraryid": 2006, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 223, - "libraryid": 2101, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 224, - "libraryid": 2102, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 225, - "libraryid": 2103, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 226, - "libraryid": 2104, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 227, - "libraryid": 2105, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 228, - "libraryid": 2106, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 229, - "libraryid": 2101, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 230, - "libraryid": 2102, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 231, - "libraryid": 2103, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 232, - "libraryid": 2104, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 233, - "libraryid": 2105, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 234, - "libraryid": 2106, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 235, - "libraryid": 2101, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 236, - "libraryid": 2102, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 237, - "libraryid": 2103, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 238, - "libraryid": 2104, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 239, - "libraryid": 2105, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 240, - "libraryid": 2106, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 241, - "libraryid": 2101, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 242, - "libraryid": 2102, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 243, - "libraryid": 2103, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 244, - "libraryid": 2104, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 245, - "libraryid": 2105, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 246, - "libraryid": 2106, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 247, - "libraryid": 2101, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 248, - "libraryid": 2102, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 249, - "libraryid": 2103, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 250, - "libraryid": 2104, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 251, - "libraryid": 2105, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 252, - "libraryid": 2106, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 253, - "libraryid": 2101, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 254, - "libraryid": 2102, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 255, - "libraryid": 2103, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 256, - "libraryid": 2104, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 257, - "libraryid": 2105, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 258, - "libraryid": 2106, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 259, - "libraryid": 2101, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 260, - "libraryid": 2102, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 261, - "libraryid": 2103, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 262, - "libraryid": 2104, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 263, - "libraryid": 2105, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 264, - "libraryid": 2106, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 265, - "libraryid": 2101, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 266, - "libraryid": 2102, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 267, - "libraryid": 2103, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 268, - "libraryid": 2104, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 269, - "libraryid": 2105, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 270, - "libraryid": 2106, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 271, - "libraryid": 2101, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 272, - "libraryid": 2102, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 273, - "libraryid": 2103, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 274, - "libraryid": 2104, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 275, - "libraryid": 2105, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 276, - "libraryid": 2106, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 277, - "libraryid": 2101, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 278, - "libraryid": 2102, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 279, - "libraryid": 2103, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 280, - "libraryid": 2104, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 281, - "libraryid": 2105, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 282, - "libraryid": 2106, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 283, - "libraryid": 2201, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 284, - "libraryid": 2202, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 285, - "libraryid": 2203, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 286, - "libraryid": 2204, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 287, - "libraryid": 2205, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 288, - "libraryid": 2206, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 289, - "libraryid": 2201, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 290, - "libraryid": 2202, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 291, - "libraryid": 2203, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 292, - "libraryid": 2204, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 293, - "libraryid": 2205, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 294, - "libraryid": 2206, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 295, - "libraryid": 2201, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 296, - "libraryid": 2202, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 297, - "libraryid": 2203, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 298, - "libraryid": 2204, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 299, - "libraryid": 2205, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 300, - "libraryid": 2206, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 301, - "libraryid": 2201, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 302, - "libraryid": 2202, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 303, - "libraryid": 2203, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 304, - "libraryid": 2204, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 305, - "libraryid": 2205, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 306, - "libraryid": 2206, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 307, - "libraryid": 2201, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 308, - "libraryid": 2202, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 309, - "libraryid": 2203, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 310, - "libraryid": 2204, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 311, - "libraryid": 2205, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 312, - "libraryid": 2206, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 313, - "libraryid": 2201, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 314, - "libraryid": 2202, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 315, - "libraryid": 2203, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 316, - "libraryid": 2204, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 317, - "libraryid": 2205, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 318, - "libraryid": 2206, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 319, - "libraryid": 2201, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 320, - "libraryid": 2202, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 321, - "libraryid": 2203, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 322, - "libraryid": 2204, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 323, - "libraryid": 2205, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 324, - "libraryid": 2206, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 325, - "libraryid": 2201, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 326, - "libraryid": 2202, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 327, - "libraryid": 2203, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 328, - "libraryid": 2204, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 329, - "libraryid": 2205, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 330, - "libraryid": 2206, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 331, - "libraryid": 2201, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 332, - "libraryid": 2202, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 333, - "libraryid": 2203, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 334, - "libraryid": 2204, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 335, - "libraryid": 2205, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 336, - "libraryid": 2206, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 337, - "libraryid": 2201, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 338, - "libraryid": 2202, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 339, - "libraryid": 2203, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 340, - "libraryid": 2204, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 341, - "libraryid": 2205, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 342, - "libraryid": 2206, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 343, - "libraryid": 2301, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 344, - "libraryid": 2302, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 345, - "libraryid": 2303, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 346, - "libraryid": 2304, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 347, - "libraryid": 2305, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 348, - "libraryid": 2306, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 349, - "libraryid": 2301, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 350, - "libraryid": 2302, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 351, - "libraryid": 2303, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 352, - "libraryid": 2304, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 353, - "libraryid": 2305, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 354, - "libraryid": 2306, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 355, - "libraryid": 2301, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 356, - "libraryid": 2302, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 357, - "libraryid": 2303, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 358, - "libraryid": 2304, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 359, - "libraryid": 2305, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 360, - "libraryid": 2306, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 361, - "libraryid": 2301, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 362, - "libraryid": 2302, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 363, - "libraryid": 2303, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 364, - "libraryid": 2304, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 365, - "libraryid": 2305, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 366, - "libraryid": 2306, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 367, - "libraryid": 2301, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 368, - "libraryid": 2302, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 369, - "libraryid": 2303, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 370, - "libraryid": 2304, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 371, - "libraryid": 2305, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 372, - "libraryid": 2306, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 373, - "libraryid": 2301, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 374, - "libraryid": 2302, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 375, - "libraryid": 2303, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 376, - "libraryid": 2304, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 377, - "libraryid": 2305, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 378, - "libraryid": 2306, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 379, - "libraryid": 2301, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 380, - "libraryid": 2302, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 381, - "libraryid": 2303, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 382, - "libraryid": 2304, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 383, - "libraryid": 2305, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 384, - "libraryid": 2306, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 385, - "libraryid": 2301, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 386, - "libraryid": 2302, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 387, - "libraryid": 2303, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 388, - "libraryid": 2304, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 389, - "libraryid": 2305, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 390, - "libraryid": 2306, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 391, - "libraryid": 2301, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 392, - "libraryid": 2302, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 393, - "libraryid": 2303, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 394, - "libraryid": 2304, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 395, - "libraryid": 2305, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 396, - "libraryid": 2306, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 397, - "libraryid": 2301, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 398, - "libraryid": 2302, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 399, - "libraryid": 2303, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 400, - "libraryid": 2304, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 401, - "libraryid": 2305, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 402, - "libraryid": 2306, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 403, - "libraryid": 2401, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 404, - "libraryid": 2402, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 405, - "libraryid": 2403, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 406, - "libraryid": 2404, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 407, - "libraryid": 2405, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 408, - "libraryid": 2406, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 409, - "libraryid": 2401, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 410, - "libraryid": 2402, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 411, - "libraryid": 2403, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 412, - "libraryid": 2404, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 413, - "libraryid": 2405, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 414, - "libraryid": 2406, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 415, - "libraryid": 2401, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 416, - "libraryid": 2402, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 417, - "libraryid": 2403, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 418, - "libraryid": 2404, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 419, - "libraryid": 2405, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 420, - "libraryid": 2406, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 421, - "libraryid": 2401, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 422, - "libraryid": 2402, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 423, - "libraryid": 2403, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 424, - "libraryid": 2404, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 425, - "libraryid": 2405, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 426, - "libraryid": 2406, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 427, - "libraryid": 2401, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 428, - "libraryid": 2402, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 429, - "libraryid": 2403, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 430, - "libraryid": 2404, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 431, - "libraryid": 2405, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 432, - "libraryid": 2406, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 433, - "libraryid": 2401, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 434, - "libraryid": 2402, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 435, - "libraryid": 2403, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 436, - "libraryid": 2404, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 437, - "libraryid": 2405, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 438, - "libraryid": 2406, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 439, - "libraryid": 2401, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 440, - "libraryid": 2402, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 441, - "libraryid": 2403, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 442, - "libraryid": 2404, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 443, - "libraryid": 2405, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 444, - "libraryid": 2406, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 445, - "libraryid": 2401, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 446, - "libraryid": 2402, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 447, - "libraryid": 2403, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 448, - "libraryid": 2404, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 449, - "libraryid": 2405, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 450, - "libraryid": 2406, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 451, - "libraryid": 2401, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 452, - "libraryid": 2402, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 453, - "libraryid": 2403, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 454, - "libraryid": 2404, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 455, - "libraryid": 2405, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 456, - "libraryid": 2406, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 457, - "libraryid": 2401, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 458, - "libraryid": 2402, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 459, - "libraryid": 2403, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 460, - "libraryid": 2404, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 461, - "libraryid": 2405, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 462, - "libraryid": 2406, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 463, - "libraryid": 2501, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 464, - "libraryid": 2502, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 465, - "libraryid": 2503, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 466, - "libraryid": 2504, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 467, - "libraryid": 2505, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 468, - "libraryid": 2506, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 469, - "libraryid": 2501, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 470, - "libraryid": 2502, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 471, - "libraryid": 2503, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 472, - "libraryid": 2504, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 473, - "libraryid": 2505, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 474, - "libraryid": 2506, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 475, - "libraryid": 2501, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 476, - "libraryid": 2502, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 477, - "libraryid": 2503, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 478, - "libraryid": 2504, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 479, - "libraryid": 2505, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 480, - "libraryid": 2506, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 481, - "libraryid": 2501, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 482, - "libraryid": 2502, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 483, - "libraryid": 2503, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 484, - "libraryid": 2504, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 485, - "libraryid": 2505, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 486, - "libraryid": 2506, - "attrkey": "hp", - "attrvar": 150, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 487, - "libraryid": 2501, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 488, - "libraryid": 2502, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 489, - "libraryid": 2503, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 490, - "libraryid": 2504, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 491, - "libraryid": 2505, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 492, - "libraryid": 2506, - "attrkey": "atk", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 493, - "libraryid": 2501, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 494, - "libraryid": 2502, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 495, - "libraryid": 2503, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 496, - "libraryid": 2504, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 497, - "libraryid": 2505, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 498, - "libraryid": 2506, - "attrkey": "def", - "attrvar": 15, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 499, - "libraryid": 2501, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 500, - "libraryid": 2502, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 501, - "libraryid": 2503, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 502, - "libraryid": 2504, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 503, - "libraryid": 2505, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 504, - "libraryid": 2506, - "attrkey": "hppro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 505, - "libraryid": 2501, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 506, - "libraryid": 2502, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 507, - "libraryid": 2503, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 508, - "libraryid": 2504, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 509, - "libraryid": 2505, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 510, - "libraryid": 2506, - "attrkey": "atkpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 511, - "libraryid": 2501, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 512, - "libraryid": 2502, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 513, - "libraryid": 2503, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 514, - "libraryid": 2504, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 515, - "libraryid": 2505, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 516, - "libraryid": 2506, - "attrkey": "defpro", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 517, - "libraryid": 2501, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 518, - "libraryid": 2502, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 519, - "libraryid": 2503, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 520, - "libraryid": 2504, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 521, - "libraryid": 2505, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 522, - "libraryid": 2506, - "attrkey": "speed", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 523, - "libraryid": 2601, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 524, - "libraryid": 2602, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 525, - "libraryid": 2603, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 526, - "libraryid": 2604, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 527, - "libraryid": 2605, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 528, - "libraryid": 2606, - "attrkey": "cri", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 529, - "libraryid": 2601, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 530, - "libraryid": 2602, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 531, - "libraryid": 2603, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 532, - "libraryid": 2604, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 533, - "libraryid": 2605, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 534, - "libraryid": 2606, - "attrkey": "cridam", - "attrvar": 3, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 535, - "libraryid": 2601, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 536, - "libraryid": 2602, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 537, - "libraryid": 2603, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 538, - "libraryid": 2604, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 539, - "libraryid": 2605, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 540, - "libraryid": 2606, - "attrkey": "effhit", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 1, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 541, - "libraryid": 2601, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 542, - "libraryid": 2602, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 543, - "libraryid": 2603, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 544, - "libraryid": 2604, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 545, - "libraryid": 2605, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 546, - "libraryid": 2606, - "attrkey": "effre", - "attrvar": 2, - "attrvar_correct": 0, - "probability": 2, - "Addition": [ - 1000, - 1000, - 1000, - 1000, - 1000 - ] - }, - { - "key": 547, - "libraryid": 30004, - "attrkey": "22", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 548, - "libraryid": 30004, - "attrkey": "23", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 549, - "libraryid": 30004, - "attrkey": "24", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 550, - "libraryid": 30004, - "attrkey": "25", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 551, - "libraryid": 30004, - "attrkey": "26", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 552, - "libraryid": 30004, - "attrkey": "27", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 553, - "libraryid": 30004, - "attrkey": "28", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 554, - "libraryid": 30004, - "attrkey": "29", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 555, - "libraryid": 30004, - "attrkey": "30", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 556, - "libraryid": 30004, - "attrkey": "31", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 557, - "libraryid": 30004, - "attrkey": "32", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 558, - "libraryid": 30004, - "attrkey": "33", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 559, - "libraryid": 30004, - "attrkey": "34", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 560, - "libraryid": 30004, - "attrkey": "35", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 561, - "libraryid": 30004, - "attrkey": "36", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 562, - "libraryid": 30004, - "attrkey": "37", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 563, - "libraryid": 30004, - "attrkey": "38", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 564, - "libraryid": 30004, - "attrkey": "39", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 565, - "libraryid": 30004, - "attrkey": "40", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 566, - "libraryid": 30004, - "attrkey": "41", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 567, - "libraryid": 30005, - "attrkey": "1", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 568, - "libraryid": 30005, - "attrkey": "2", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 569, - "libraryid": 30005, - "attrkey": "3", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 570, - "libraryid": 30005, - "attrkey": "4", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 571, - "libraryid": 30005, - "attrkey": "5", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 572, - "libraryid": 30005, - "attrkey": "6", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 573, - "libraryid": 30005, - "attrkey": "7", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 574, - "libraryid": 30005, - "attrkey": "8", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 575, - "libraryid": 30005, - "attrkey": "9", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 576, - "libraryid": 30005, - "attrkey": "10", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 577, - "libraryid": 30005, - "attrkey": "11", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 578, - "libraryid": 30005, - "attrkey": "12", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 579, - "libraryid": 30005, - "attrkey": "13", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 580, - "libraryid": 30005, - "attrkey": "14", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 581, - "libraryid": 30005, - "attrkey": "15", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 582, - "libraryid": 30005, - "attrkey": "16", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 583, - "libraryid": 30005, - "attrkey": "17", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 584, - "libraryid": 30005, - "attrkey": "18", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 585, - "libraryid": 30005, - "attrkey": "19", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 586, - "libraryid": 30005, - "attrkey": "20", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 587, - "libraryid": 30005, - "attrkey": "21", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 588, - "libraryid": 30005, - "attrkey": "22", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 589, - "libraryid": 30005, - "attrkey": "23", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 590, - "libraryid": 30005, - "attrkey": "24", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 591, - "libraryid": 30005, - "attrkey": "25", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 592, - "libraryid": 30005, - "attrkey": "26", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 593, - "libraryid": 30005, - "attrkey": "27", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 594, - "libraryid": 30005, - "attrkey": "28", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 595, - "libraryid": 30005, - "attrkey": "29", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 596, - "libraryid": 30005, - "attrkey": "30", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 597, - "libraryid": 30005, - "attrkey": "31", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 598, - "libraryid": 30005, - "attrkey": "32", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 599, - "libraryid": 30005, - "attrkey": "33", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 600, - "libraryid": 30005, - "attrkey": "34", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 601, - "libraryid": 30005, - "attrkey": "35", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 602, - "libraryid": 30005, - "attrkey": "36", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 603, - "libraryid": 30005, - "attrkey": "37", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 604, - "libraryid": 30005, - "attrkey": "38", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 605, - "libraryid": 30005, - "attrkey": "39", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 606, - "libraryid": 30005, - "attrkey": "40", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 607, - "libraryid": 30005, - "attrkey": "41", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 608, - "libraryid": 30006, - "attrkey": "1", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 609, - "libraryid": 30006, - "attrkey": "2", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 610, - "libraryid": 30006, - "attrkey": "3", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 611, - "libraryid": 30006, - "attrkey": "4", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 612, - "libraryid": 30006, - "attrkey": "5", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 613, - "libraryid": 30006, - "attrkey": "6", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 614, - "libraryid": 30006, - "attrkey": "7", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 615, - "libraryid": 30006, - "attrkey": "8", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 616, - "libraryid": 30006, - "attrkey": "9", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 617, - "libraryid": 30006, - "attrkey": "10", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 618, - "libraryid": 30006, - "attrkey": "11", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 619, - "libraryid": 30006, - "attrkey": "12", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 620, - "libraryid": 30006, - "attrkey": "13", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 621, - "libraryid": 30006, - "attrkey": "14", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 622, - "libraryid": 30006, - "attrkey": "15", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 623, - "libraryid": 30006, - "attrkey": "16", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 624, - "libraryid": 30006, - "attrkey": "17", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 625, - "libraryid": 30006, - "attrkey": "18", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 626, - "libraryid": 30006, - "attrkey": "19", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 627, - "libraryid": 30006, - "attrkey": "20", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 628, - "libraryid": 30006, - "attrkey": "21", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 629, - "libraryid": 30006, - "attrkey": "22", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 630, - "libraryid": 30006, - "attrkey": "23", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 631, - "libraryid": 30006, - "attrkey": "24", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 632, - "libraryid": 30006, - "attrkey": "25", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 633, - "libraryid": 30006, - "attrkey": "26", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 634, - "libraryid": 30006, - "attrkey": "27", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 635, - "libraryid": 30006, - "attrkey": "28", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 636, - "libraryid": 30006, - "attrkey": "29", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 637, - "libraryid": 30006, - "attrkey": "30", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 638, - "libraryid": 30006, - "attrkey": "31", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 639, - "libraryid": 30006, - "attrkey": "32", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 640, - "libraryid": 30006, - "attrkey": "33", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 641, - "libraryid": 30006, - "attrkey": "34", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 642, - "libraryid": 30006, - "attrkey": "35", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 643, - "libraryid": 30006, - "attrkey": "36", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 644, - "libraryid": 30006, - "attrkey": "37", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 645, - "libraryid": 30006, - "attrkey": "38", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 646, - "libraryid": 30006, - "attrkey": "39", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 647, - "libraryid": 30006, - "attrkey": "40", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 648, - "libraryid": 30006, - "attrkey": "41", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 1000, - "Addition": [] - }, - { - "key": 649, - "libraryid": 30101, - "attrkey": "atk", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 150, - "Addition": [ - 800, - 900, - 1000, - 1100, - 1200 - ] - }, - { - "key": 650, - "libraryid": 30101, - "attrkey": "def", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 150, - "Addition": [ - 800, - 900, - 1000, - 1100, - 1200 - ] - }, - { - "key": 651, - "libraryid": 30101, - "attrkey": "hp", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 400, - "Addition": [ - 800, - 900, - 1000, - 1100, - 1200 - ] - }, - { - "key": 652, - "libraryid": 30101, - "attrkey": "atkpro", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 100, - "Addition": [ - 800, - 900, - 1000, - 1100, - 1200 - ] - }, - { - "key": 653, - "libraryid": 30101, - "attrkey": "defpro", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 100, - "Addition": [ - 800, - 900, - 1000, - 1100, - 1200 - ] - }, - { - "key": 654, - "libraryid": 30101, - "attrkey": "hppro", - "attrvar": 1, - "attrvar_correct": 0, - "probability": 100, - "Addition": [ - 800, - 900, - 1000, - 1100, - 1200 - ] - } -] \ No newline at end of file diff --git a/bin/json/game_favorability.json b/bin/json/game_favorability.json index c7e36e2ba..d1da8f1fc 100644 --- a/bin/json/game_favorability.json +++ b/bin/json/game_favorability.json @@ -116,7 +116,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -222,7 +222,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -328,7 +328,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -434,7 +434,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -540,7 +540,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -646,7 +646,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -752,7 +752,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -858,7 +858,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -964,7 +964,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1170,7 +1170,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1276,7 +1276,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1382,7 +1382,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1488,7 +1488,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1594,7 +1594,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1700,7 +1700,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1806,7 +1806,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1912,7 +1912,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2018,7 +2018,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2224,7 +2224,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2330,7 +2330,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2436,7 +2436,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2542,7 +2542,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2648,7 +2648,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2754,7 +2754,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2860,7 +2860,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2966,7 +2966,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3072,7 +3072,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3278,7 +3278,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3384,7 +3384,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3490,7 +3490,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3596,7 +3596,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3702,7 +3702,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3808,7 +3808,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3914,7 +3914,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4020,7 +4020,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4126,7 +4126,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4332,7 +4332,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4438,7 +4438,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4544,7 +4544,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4650,7 +4650,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4756,7 +4756,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4862,7 +4862,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4968,7 +4968,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5074,7 +5074,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5180,7 +5180,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5386,7 +5386,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5492,7 +5492,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5598,7 +5598,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5704,7 +5704,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5810,7 +5810,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5916,7 +5916,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6022,7 +6022,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6128,7 +6128,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6234,7 +6234,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6440,7 +6440,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6546,7 +6546,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6652,7 +6652,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6758,7 +6758,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6864,7 +6864,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6970,7 +6970,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7076,7 +7076,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7182,7 +7182,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7288,7 +7288,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7494,7 +7494,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7600,7 +7600,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7706,7 +7706,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7812,7 +7812,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -7918,7 +7918,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8024,7 +8024,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8130,7 +8130,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8236,7 +8236,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8342,7 +8342,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8548,7 +8548,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8654,7 +8654,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8760,7 +8760,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8866,7 +8866,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -8972,7 +8972,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9078,7 +9078,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9184,7 +9184,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9290,7 +9290,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9396,7 +9396,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9602,7 +9602,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9708,7 +9708,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9814,7 +9814,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -9920,7 +9920,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10026,7 +10026,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10132,7 +10132,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10238,7 +10238,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10344,7 +10344,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10450,7 +10450,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10656,7 +10656,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10762,7 +10762,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10868,7 +10868,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -10974,7 +10974,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11080,7 +11080,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11186,7 +11186,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11292,7 +11292,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11398,7 +11398,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11504,7 +11504,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11710,7 +11710,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11816,7 +11816,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -11922,7 +11922,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12028,7 +12028,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12134,7 +12134,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12240,7 +12240,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12346,7 +12346,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12452,7 +12452,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12558,7 +12558,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12764,7 +12764,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12870,7 +12870,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -12976,7 +12976,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13082,7 +13082,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13188,7 +13188,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13294,7 +13294,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13400,7 +13400,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13506,7 +13506,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13612,7 +13612,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13818,7 +13818,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -13924,7 +13924,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14030,7 +14030,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14136,7 +14136,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14242,7 +14242,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14348,7 +14348,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14454,7 +14454,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14560,7 +14560,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14666,7 +14666,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14872,7 +14872,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -14978,7 +14978,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -15084,7 +15084,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -15190,7 +15190,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -15296,7 +15296,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -15402,7 +15402,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -15508,7 +15508,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -15614,7 +15614,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -15720,7 +15720,7 @@ "return_reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], diff --git a/bin/json/game_global.json b/bin/json/game_global.json index 06870a373..51bfe8d55 100644 --- a/bin/json/game_global.json +++ b/bin/json/game_global.json @@ -51,7 +51,7 @@ "duplicate_removal": 1, "base_pool_cost": { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 }, "camp1_pool_cost": { @@ -76,7 +76,7 @@ }, "base_pool_10cost": { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, "camp1_pool_10cost": { @@ -217,7 +217,7 @@ "ArenaTicket_RecoveryTime": 144, "ArenaTicket_cos": { "a": "item", - "t": "100004", + "t": "18000004", "n": 1 }, "VikingExpedition_RecoveryTime": 144, @@ -277,7 +277,7 @@ ], "cops_BuyGet": { "a": "item", - "t": "100100", + "t": "18000007", "n": 1 }, "cops_MaxBuyNum": 10, @@ -435,7 +435,7 @@ ], "ps_item": { "a": "item", - "t": "10017", + "t": "10000003", "n": 1 }, "Inletopening": 1, @@ -456,7 +456,7 @@ }, "recruit": { "a": "item", - "t": "30001", + "t": "10000001", "n": 0 }, "GuildBoss_buy": [ @@ -514,7 +514,7 @@ "GuildBoss_InitialNum": 5, "GuildBoss_BuyGet": { "a": "item", - "t": "100006", + "t": "18000006", "n": 1 }, "GuildBoss_MaxBuyNum": 5, @@ -530,7 +530,7 @@ ], "generaltp": { "a": "item", - "t": "500000", + "t": "10000002", "n": 0 }, "smithy_PurchaseType": [ @@ -539,13 +539,13 @@ ], "raise_temperature": { "a": "item", - "t": "120104", + "t": "13000004", "n": 1 }, "raise_temperatureNum": 50, "exemption_TemperatureCos": { "a": "item", - "t": "120103", + "t": "13000003", "n": 1 }, "exemption_TemperatureCosNum": 50, @@ -561,7 +561,7 @@ "dispatch_numoftimes": 60, "dispatch_numtools": { "a": "item", - "t": "100001", + "t": "18000001", "n": 1 }, "dispatch_npctimes": 2, @@ -571,7 +571,7 @@ "g": [ { "a": "item", - "t": "120003", + "t": "13001003", "n": 1 }, { @@ -586,7 +586,7 @@ "g": [ { "a": "item", - "t": "120003", + "t": "13001003", "n": 2 }, { @@ -601,7 +601,7 @@ "g": [ { "a": "item", - "t": "120003", + "t": "13001003", "n": 4 } ] @@ -656,7 +656,7 @@ "puzzlePromptNum": 5, "Daily_Tips": { "a": "item", - "t": "151001", + "t": "10000006", "n": 1 }, "Daily_Num": 2, diff --git a/bin/json/game_hero.json b/bin/json/game_hero.json index 9b1b4e91b..7fec924af 100644 --- a/bin/json/game_hero.json +++ b/bin/json/game_hero.json @@ -75,7 +75,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -157,7 +157,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -239,7 +239,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -321,7 +321,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -403,7 +403,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -485,7 +485,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -567,7 +567,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -649,7 +649,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -731,7 +731,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -813,7 +813,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -895,7 +895,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -977,7 +977,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -1059,7 +1059,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -1141,7 +1141,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -1223,7 +1223,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -1305,7 +1305,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -1387,7 +1387,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -1469,7 +1469,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -1551,7 +1551,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -1633,7 +1633,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -1715,7 +1715,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -1797,7 +1797,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -1879,7 +1879,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -1961,7 +1961,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -2043,7 +2043,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -2125,7 +2125,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -2207,7 +2207,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -2289,7 +2289,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -2371,7 +2371,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -2453,7 +2453,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -2535,7 +2535,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -2617,7 +2617,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -2699,7 +2699,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -2781,7 +2781,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -2863,7 +2863,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -2945,7 +2945,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -3027,7 +3027,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -3109,7 +3109,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -3191,7 +3191,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -3273,7 +3273,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3355,7 +3355,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3437,7 +3437,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3519,7 +3519,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3601,7 +3601,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3683,7 +3683,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3765,7 +3765,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3847,7 +3847,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -3929,7 +3929,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -4011,7 +4011,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -4093,7 +4093,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -4175,7 +4175,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -4257,7 +4257,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -4339,7 +4339,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -4421,7 +4421,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -4503,7 +4503,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -4585,7 +4585,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -4667,7 +4667,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -4749,7 +4749,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -4831,7 +4831,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -4913,7 +4913,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -4995,7 +4995,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -5077,7 +5077,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -5159,7 +5159,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -5241,7 +5241,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -5323,7 +5323,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -5405,7 +5405,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -5487,7 +5487,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -5569,7 +5569,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -5651,7 +5651,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -5733,7 +5733,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -5815,7 +5815,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -5897,7 +5897,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -5968,7 +5968,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -5979,7 +5979,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6050,7 +6050,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6061,7 +6061,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6132,7 +6132,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6143,7 +6143,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6214,7 +6214,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6225,7 +6225,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6296,7 +6296,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6307,7 +6307,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6378,7 +6378,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6389,7 +6389,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6460,7 +6460,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6471,7 +6471,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6542,7 +6542,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6553,7 +6553,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6624,7 +6624,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6635,7 +6635,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6706,7 +6706,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6717,7 +6717,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6788,7 +6788,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6799,7 +6799,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6870,7 +6870,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6881,7 +6881,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6952,7 +6952,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -6963,7 +6963,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -7034,7 +7034,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7045,7 +7045,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -7116,7 +7116,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7127,7 +7127,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -7198,7 +7198,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7209,7 +7209,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -7280,7 +7280,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7291,7 +7291,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -7362,7 +7362,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7373,7 +7373,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -7444,7 +7444,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7455,7 +7455,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -7526,7 +7526,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7537,7 +7537,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -7608,7 +7608,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7619,7 +7619,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -7690,7 +7690,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7701,7 +7701,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -7772,7 +7772,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7783,7 +7783,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -7854,7 +7854,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7865,7 +7865,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -7936,7 +7936,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -7947,7 +7947,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -8018,7 +8018,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8029,7 +8029,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -8100,7 +8100,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8111,7 +8111,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -8184,7 +8184,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8195,7 +8195,7 @@ "expitem": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -8266,7 +8266,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8277,7 +8277,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -8348,7 +8348,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8359,7 +8359,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -8430,7 +8430,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8441,7 +8441,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -8512,7 +8512,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8523,7 +8523,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -8594,7 +8594,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8605,7 +8605,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -8676,7 +8676,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8687,7 +8687,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -8758,7 +8758,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8769,7 +8769,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -8840,7 +8840,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8851,7 +8851,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -8922,7 +8922,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -8933,7 +8933,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9004,7 +9004,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -9015,7 +9015,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -9086,7 +9086,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -9097,7 +9097,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -9168,7 +9168,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -9179,7 +9179,7 @@ "expitem": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -9250,7 +9250,7 @@ "herofrag": [ { "a": "item", - "t": "625001", + "t": "12025001", "n": 1 } ], @@ -9261,7 +9261,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9343,7 +9343,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9425,7 +9425,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9507,7 +9507,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9589,7 +9589,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9671,7 +9671,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9753,7 +9753,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9835,7 +9835,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9917,7 +9917,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -9999,7 +9999,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -10081,7 +10081,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -10163,7 +10163,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -10245,7 +10245,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -10327,7 +10327,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -10409,7 +10409,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -10491,7 +10491,7 @@ "expitem": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], diff --git a/bin/json/game_heroawaken.json b/bin/json/game_heroawaken.json index 64f6d82e4..b97d12a0d 100644 --- a/bin/json/game_heroawaken.json +++ b/bin/json/game_heroawaken.json @@ -17,7 +17,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -47,7 +47,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -77,12 +77,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -112,12 +112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -147,12 +147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -182,12 +182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -217,7 +217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -247,7 +247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -277,12 +277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -312,12 +312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -347,12 +347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -382,12 +382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -417,7 +417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -447,7 +447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -477,12 +477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -512,12 +512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -547,12 +547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -582,12 +582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -617,7 +617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -647,7 +647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -677,12 +677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -712,12 +712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -747,12 +747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -782,12 +782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -817,7 +817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -847,7 +847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -877,12 +877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -912,12 +912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -947,12 +947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -982,12 +982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -1017,7 +1017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1047,7 +1047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1077,12 +1077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1112,12 +1112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1147,12 +1147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -1182,12 +1182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -1217,7 +1217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1247,7 +1247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1277,12 +1277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1312,12 +1312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1347,12 +1347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -1382,12 +1382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -1417,7 +1417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1447,7 +1447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1477,12 +1477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1512,12 +1512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1547,12 +1547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -1582,12 +1582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -1617,7 +1617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1647,7 +1647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1677,12 +1677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1712,12 +1712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1747,12 +1747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -1782,12 +1782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -1817,7 +1817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1847,7 +1847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1877,12 +1877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -1912,12 +1912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -1947,12 +1947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -1982,12 +1982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -2017,7 +2017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2047,7 +2047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2077,12 +2077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2112,12 +2112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2147,12 +2147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -2182,12 +2182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -2217,7 +2217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2247,7 +2247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2277,12 +2277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2312,12 +2312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2347,12 +2347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -2382,12 +2382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -2417,7 +2417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2447,7 +2447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2477,12 +2477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2512,12 +2512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2547,12 +2547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -2582,12 +2582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -2617,7 +2617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2647,7 +2647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2677,12 +2677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2712,12 +2712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2747,12 +2747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -2782,12 +2782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -2817,7 +2817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2847,7 +2847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2877,12 +2877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -2912,12 +2912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -2947,12 +2947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -2982,12 +2982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -3017,7 +3017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3047,7 +3047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3077,12 +3077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3112,12 +3112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3147,12 +3147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -3182,12 +3182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -3217,7 +3217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3247,7 +3247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3277,12 +3277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3312,12 +3312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3347,12 +3347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -3382,12 +3382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -3417,7 +3417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3447,7 +3447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3477,12 +3477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3512,12 +3512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3547,12 +3547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -3582,12 +3582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -3617,7 +3617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3647,7 +3647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3677,12 +3677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3712,12 +3712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3747,12 +3747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -3782,12 +3782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -3817,7 +3817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3847,7 +3847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3877,12 +3877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -3912,12 +3912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -3947,12 +3947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -3982,12 +3982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -4017,7 +4017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4047,7 +4047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4077,12 +4077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4112,12 +4112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4147,12 +4147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -4182,12 +4182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -4217,7 +4217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4247,7 +4247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4277,12 +4277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4312,12 +4312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4347,12 +4347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -4382,12 +4382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -4417,7 +4417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4447,7 +4447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4477,12 +4477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4512,12 +4512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4547,12 +4547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -4582,12 +4582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -4617,7 +4617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4647,7 +4647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4677,12 +4677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4712,12 +4712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4747,12 +4747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -4782,12 +4782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -4817,7 +4817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4847,7 +4847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4877,12 +4877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -4912,12 +4912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -4947,12 +4947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -4982,12 +4982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -5017,7 +5017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5047,7 +5047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5077,12 +5077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5112,12 +5112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5147,12 +5147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -5182,12 +5182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -5217,7 +5217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5247,7 +5247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5277,12 +5277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5312,12 +5312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5347,12 +5347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -5382,12 +5382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -5417,7 +5417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5447,7 +5447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5477,12 +5477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5512,12 +5512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5547,12 +5547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -5582,12 +5582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -5617,7 +5617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5647,7 +5647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5677,12 +5677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5712,12 +5712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5747,12 +5747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -5782,12 +5782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -5817,7 +5817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5847,7 +5847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5877,12 +5877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -5912,12 +5912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -5947,12 +5947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -5982,12 +5982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -6017,7 +6017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6047,7 +6047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6077,12 +6077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6112,12 +6112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6147,12 +6147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -6182,12 +6182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -6217,7 +6217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6247,7 +6247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6277,12 +6277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6312,12 +6312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6347,12 +6347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -6382,12 +6382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -6417,7 +6417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6447,7 +6447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6477,12 +6477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6512,12 +6512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6547,12 +6547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -6582,12 +6582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -6617,7 +6617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6647,7 +6647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6677,12 +6677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6712,12 +6712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6747,12 +6747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -6782,12 +6782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -6817,7 +6817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6847,7 +6847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6877,12 +6877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -6912,12 +6912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -6947,12 +6947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -6982,12 +6982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -7017,7 +7017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7047,7 +7047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7077,12 +7077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7112,12 +7112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7147,12 +7147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -7182,12 +7182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -7217,7 +7217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7247,7 +7247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7277,12 +7277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7312,12 +7312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7347,12 +7347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -7382,12 +7382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -7417,7 +7417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7447,7 +7447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7477,12 +7477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7512,12 +7512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7547,12 +7547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -7582,12 +7582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -7617,7 +7617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7647,7 +7647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7677,12 +7677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7712,12 +7712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7747,12 +7747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -7782,12 +7782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -7817,7 +7817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7847,7 +7847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7877,12 +7877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -7912,12 +7912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -7947,12 +7947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -7982,12 +7982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -8017,7 +8017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8047,7 +8047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8077,12 +8077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8112,12 +8112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8147,12 +8147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -8182,12 +8182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -8217,7 +8217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8247,7 +8247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8277,12 +8277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8312,12 +8312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8347,12 +8347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -8382,12 +8382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -8417,7 +8417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8447,7 +8447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8477,12 +8477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8512,12 +8512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8547,12 +8547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -8582,12 +8582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -8617,7 +8617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8647,7 +8647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8677,12 +8677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8712,12 +8712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8747,12 +8747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -8782,12 +8782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -8817,7 +8817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8847,7 +8847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8877,12 +8877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -8912,12 +8912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -8947,12 +8947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -8982,12 +8982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -9017,7 +9017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9047,7 +9047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9077,12 +9077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9112,12 +9112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9147,12 +9147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -9182,12 +9182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -9217,7 +9217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9247,7 +9247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9277,12 +9277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9312,12 +9312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9347,12 +9347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -9382,12 +9382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -9417,7 +9417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9447,7 +9447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9477,12 +9477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9512,12 +9512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9547,12 +9547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -9582,12 +9582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -9617,7 +9617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9647,7 +9647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9677,12 +9677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9712,12 +9712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9747,12 +9747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -9782,12 +9782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -9817,7 +9817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9847,7 +9847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9877,12 +9877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -9912,12 +9912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -9947,12 +9947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -9982,12 +9982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -10017,7 +10017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10047,7 +10047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10077,12 +10077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10112,12 +10112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10147,12 +10147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -10182,12 +10182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -10217,7 +10217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10247,7 +10247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10277,12 +10277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10312,12 +10312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10347,12 +10347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -10382,12 +10382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -10417,7 +10417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10447,7 +10447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10477,12 +10477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10512,12 +10512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10547,12 +10547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -10582,12 +10582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -10617,7 +10617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10647,7 +10647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10677,12 +10677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10712,12 +10712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10747,12 +10747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -10782,12 +10782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -10817,7 +10817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10847,7 +10847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10877,12 +10877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -10912,12 +10912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -10947,12 +10947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -10982,12 +10982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -11017,7 +11017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11047,7 +11047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11077,12 +11077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11112,12 +11112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11147,12 +11147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -11182,12 +11182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -11217,7 +11217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11247,7 +11247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11277,12 +11277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11312,12 +11312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11347,12 +11347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -11382,12 +11382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -11417,7 +11417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11447,7 +11447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11477,12 +11477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11512,12 +11512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11547,12 +11547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -11582,12 +11582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -11617,7 +11617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11647,7 +11647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11677,12 +11677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11712,12 +11712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11747,12 +11747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -11782,12 +11782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -11817,7 +11817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11847,7 +11847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11877,12 +11877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -11912,12 +11912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -11947,12 +11947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -11982,12 +11982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -12017,7 +12017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12047,7 +12047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12077,12 +12077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12112,12 +12112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12147,12 +12147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -12182,12 +12182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -12217,7 +12217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12247,7 +12247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12277,12 +12277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12312,12 +12312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12347,12 +12347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -12382,12 +12382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -12417,7 +12417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12447,7 +12447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12477,12 +12477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12512,12 +12512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12547,12 +12547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -12582,12 +12582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -12617,7 +12617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12647,7 +12647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12677,12 +12677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12712,12 +12712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12747,12 +12747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -12782,12 +12782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -12817,7 +12817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12847,7 +12847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12877,12 +12877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -12912,12 +12912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -12947,12 +12947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -12982,12 +12982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -13017,7 +13017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13047,7 +13047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13077,12 +13077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13112,12 +13112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13147,12 +13147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -13182,12 +13182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -13217,7 +13217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13247,7 +13247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13277,12 +13277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13312,12 +13312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13347,12 +13347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -13382,12 +13382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -13417,7 +13417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13447,7 +13447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13477,12 +13477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13512,12 +13512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13547,12 +13547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -13582,12 +13582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -13617,7 +13617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13647,7 +13647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13677,12 +13677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13712,12 +13712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13747,12 +13747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -13782,12 +13782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -13817,7 +13817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13847,7 +13847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13877,12 +13877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -13912,12 +13912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -13947,12 +13947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -13982,12 +13982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -14017,7 +14017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14047,7 +14047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14077,12 +14077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14112,12 +14112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14147,12 +14147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -14182,12 +14182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -14217,7 +14217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14247,7 +14247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14277,12 +14277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14312,12 +14312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14347,12 +14347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -14382,12 +14382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -14417,7 +14417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14447,7 +14447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14477,12 +14477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14512,12 +14512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14547,12 +14547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -14582,12 +14582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -14617,7 +14617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14647,7 +14647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14677,12 +14677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14712,12 +14712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14747,12 +14747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -14782,12 +14782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -14817,7 +14817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14847,7 +14847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14877,12 +14877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -14912,12 +14912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -14947,12 +14947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -14982,12 +14982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -15017,7 +15017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15047,7 +15047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15077,12 +15077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15112,12 +15112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15147,12 +15147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -15182,12 +15182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -15217,7 +15217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15247,7 +15247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15277,12 +15277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15312,12 +15312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15347,12 +15347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -15382,12 +15382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -15417,7 +15417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15447,7 +15447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15477,12 +15477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15512,12 +15512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15547,12 +15547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -15582,12 +15582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -15617,7 +15617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15647,7 +15647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15677,12 +15677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15712,12 +15712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15747,12 +15747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -15782,12 +15782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -15817,7 +15817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15847,7 +15847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15877,12 +15877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -15912,12 +15912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -15947,12 +15947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -15982,12 +15982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -16017,7 +16017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16047,7 +16047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16077,12 +16077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16112,12 +16112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16147,12 +16147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -16182,12 +16182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -16217,7 +16217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16247,7 +16247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16277,12 +16277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16312,12 +16312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16347,12 +16347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -16382,12 +16382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -16417,7 +16417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16447,7 +16447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16477,12 +16477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16512,12 +16512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16547,12 +16547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -16582,12 +16582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -16617,7 +16617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16647,7 +16647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16677,12 +16677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16712,12 +16712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16747,12 +16747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -16782,12 +16782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -16817,7 +16817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16847,7 +16847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16877,12 +16877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -16912,12 +16912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -16947,12 +16947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -16982,12 +16982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -17017,7 +17017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17047,7 +17047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17077,12 +17077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17112,12 +17112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17147,12 +17147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -17182,12 +17182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -17217,7 +17217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17247,7 +17247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17277,12 +17277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17312,12 +17312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17347,12 +17347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -17382,12 +17382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -17417,7 +17417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17447,7 +17447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17477,12 +17477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17512,12 +17512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17547,12 +17547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -17582,12 +17582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -17617,7 +17617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17647,7 +17647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17677,12 +17677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17712,12 +17712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17747,12 +17747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -17782,12 +17782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -17817,7 +17817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17847,7 +17847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17877,12 +17877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -17912,12 +17912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -17947,12 +17947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -17982,12 +17982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -18017,7 +18017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18047,7 +18047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18077,12 +18077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18112,12 +18112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18147,12 +18147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -18182,12 +18182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -18217,7 +18217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18247,7 +18247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18277,12 +18277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18312,12 +18312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18347,12 +18347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -18382,12 +18382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -18417,7 +18417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18447,7 +18447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18477,12 +18477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18512,12 +18512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18547,12 +18547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -18582,12 +18582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -18617,7 +18617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18647,7 +18647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18677,12 +18677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18712,12 +18712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18747,12 +18747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -18782,12 +18782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -18817,7 +18817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18847,7 +18847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18877,12 +18877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -18912,12 +18912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -18947,12 +18947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -18982,12 +18982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -19017,7 +19017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19047,7 +19047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19077,12 +19077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19112,12 +19112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19147,12 +19147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -19182,12 +19182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -19217,7 +19217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19247,7 +19247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19277,12 +19277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19312,12 +19312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19347,12 +19347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -19382,12 +19382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -19417,7 +19417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19447,7 +19447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19477,12 +19477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19512,12 +19512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19547,12 +19547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -19582,12 +19582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -19617,7 +19617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19647,7 +19647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19677,12 +19677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19712,12 +19712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19747,12 +19747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -19782,12 +19782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -19817,7 +19817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19847,7 +19847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19877,12 +19877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -19912,12 +19912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -19947,12 +19947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -19982,12 +19982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -20017,7 +20017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20047,7 +20047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20077,12 +20077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20112,12 +20112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20147,12 +20147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -20182,12 +20182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -20217,7 +20217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20247,7 +20247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20277,12 +20277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20312,12 +20312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20347,12 +20347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -20382,12 +20382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -20417,7 +20417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20447,7 +20447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20477,12 +20477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20512,12 +20512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20547,12 +20547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -20582,12 +20582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -20617,7 +20617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20647,7 +20647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20677,12 +20677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20712,12 +20712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20747,12 +20747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -20782,12 +20782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -20817,7 +20817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20847,7 +20847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20877,12 +20877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -20912,12 +20912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -20947,12 +20947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -20982,12 +20982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -21017,7 +21017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21047,7 +21047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21077,12 +21077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21112,12 +21112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21147,12 +21147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -21182,12 +21182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -21217,7 +21217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21247,7 +21247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21277,12 +21277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21312,12 +21312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21347,12 +21347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -21382,12 +21382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -21417,7 +21417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21447,7 +21447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21477,12 +21477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21512,12 +21512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21547,12 +21547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -21582,12 +21582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -21617,7 +21617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21647,7 +21647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21677,12 +21677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21712,12 +21712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21747,12 +21747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -21782,12 +21782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -21817,7 +21817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21847,7 +21847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21877,12 +21877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -21912,12 +21912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -21947,12 +21947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -21982,12 +21982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -22017,7 +22017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22047,7 +22047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22077,12 +22077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22112,12 +22112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22147,12 +22147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -22182,12 +22182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -22217,7 +22217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22247,7 +22247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22277,12 +22277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22312,12 +22312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22347,12 +22347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -22382,12 +22382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -22417,7 +22417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22447,7 +22447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22477,12 +22477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22512,12 +22512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22547,12 +22547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -22582,12 +22582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -22617,7 +22617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22647,7 +22647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22677,12 +22677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22712,12 +22712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22747,12 +22747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -22782,12 +22782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -22817,7 +22817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22847,7 +22847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22877,12 +22877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -22912,12 +22912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -22947,12 +22947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -22982,12 +22982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -23017,7 +23017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23047,7 +23047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23077,12 +23077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23112,12 +23112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23147,12 +23147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -23182,12 +23182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -23217,7 +23217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23247,7 +23247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23277,12 +23277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23312,12 +23312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23347,12 +23347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -23382,12 +23382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -23417,7 +23417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23447,7 +23447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23477,12 +23477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23512,12 +23512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23547,12 +23547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -23582,12 +23582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -23617,7 +23617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23647,7 +23647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23677,12 +23677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23712,12 +23712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23747,12 +23747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -23782,12 +23782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -23817,7 +23817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23847,7 +23847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23877,12 +23877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -23912,12 +23912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -23947,12 +23947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -23982,12 +23982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -24017,7 +24017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24047,7 +24047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24077,12 +24077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24112,12 +24112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24147,12 +24147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -24182,12 +24182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -24217,7 +24217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24247,7 +24247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24277,12 +24277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24312,12 +24312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24347,12 +24347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -24382,12 +24382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -24417,7 +24417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24447,7 +24447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24477,12 +24477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24512,12 +24512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24547,12 +24547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -24582,12 +24582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -24617,7 +24617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24647,7 +24647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24677,12 +24677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24712,12 +24712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24747,12 +24747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -24782,12 +24782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -24817,7 +24817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24847,7 +24847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24877,12 +24877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -24912,12 +24912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -24947,12 +24947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -24982,12 +24982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -25017,7 +25017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25047,7 +25047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25077,12 +25077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25112,12 +25112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25147,12 +25147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -25182,12 +25182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -25217,7 +25217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25247,7 +25247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25277,12 +25277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25312,12 +25312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25347,12 +25347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -25382,12 +25382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -25417,7 +25417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25447,7 +25447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25477,12 +25477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25512,12 +25512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25547,12 +25547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -25582,12 +25582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -25617,7 +25617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25647,7 +25647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25677,12 +25677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25712,12 +25712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25747,12 +25747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -25782,12 +25782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -25817,7 +25817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25847,7 +25847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25877,12 +25877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -25912,12 +25912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -25947,12 +25947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -25982,12 +25982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -26017,7 +26017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26047,7 +26047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26077,12 +26077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26112,12 +26112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26147,12 +26147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -26182,12 +26182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -26217,7 +26217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26247,7 +26247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26277,12 +26277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26312,12 +26312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26347,12 +26347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -26382,12 +26382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -26417,7 +26417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26447,7 +26447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26477,12 +26477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26512,12 +26512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26547,12 +26547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -26582,12 +26582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -26617,7 +26617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26647,7 +26647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26677,12 +26677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26712,12 +26712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26747,12 +26747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -26782,12 +26782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -26817,7 +26817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26847,7 +26847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26877,12 +26877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -26912,12 +26912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -26947,12 +26947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -26982,12 +26982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -27017,7 +27017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27047,7 +27047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27077,12 +27077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27112,12 +27112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27147,12 +27147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -27182,12 +27182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -27217,7 +27217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27247,7 +27247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27277,12 +27277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27312,12 +27312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27347,12 +27347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -27382,12 +27382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -27417,7 +27417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27447,7 +27447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27477,12 +27477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27512,12 +27512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27547,12 +27547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -27582,12 +27582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -27617,7 +27617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27647,7 +27647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27677,12 +27677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27712,12 +27712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27747,12 +27747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -27782,12 +27782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -27817,7 +27817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27847,7 +27847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27877,12 +27877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -27912,12 +27912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -27947,12 +27947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -27982,12 +27982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -28017,7 +28017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28047,7 +28047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28077,12 +28077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28112,12 +28112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28147,12 +28147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -28182,12 +28182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -28217,7 +28217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28247,7 +28247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28277,12 +28277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28312,12 +28312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28347,12 +28347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -28382,12 +28382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -28417,7 +28417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28447,7 +28447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28477,12 +28477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28512,12 +28512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28547,12 +28547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -28582,12 +28582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -28617,7 +28617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28647,7 +28647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28677,12 +28677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28712,12 +28712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28747,12 +28747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -28782,12 +28782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -28817,7 +28817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28847,7 +28847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28877,12 +28877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -28912,12 +28912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -28947,12 +28947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -28982,12 +28982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -29017,7 +29017,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29047,7 +29047,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29077,12 +29077,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29112,12 +29112,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29147,12 +29147,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -29182,12 +29182,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -29217,7 +29217,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29247,7 +29247,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29277,12 +29277,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29312,12 +29312,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29347,12 +29347,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -29382,12 +29382,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -29417,7 +29417,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29447,7 +29447,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29477,12 +29477,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29512,12 +29512,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29547,12 +29547,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -29582,12 +29582,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -29617,7 +29617,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29647,7 +29647,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29677,12 +29677,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29712,12 +29712,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29747,12 +29747,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -29782,12 +29782,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], @@ -29817,7 +29817,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29847,7 +29847,7 @@ }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29877,12 +29877,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 10 } ], @@ -29912,12 +29912,12 @@ }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 }, { "a": "item", - "t": "14010111", + "t": "15000101", "n": 20 } ], @@ -29947,12 +29947,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 10 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 10 } ], @@ -29982,12 +29982,12 @@ }, { "a": "item", - "t": "14030111", + "t": "15000301", "n": 20 }, { "a": "item", - "t": "14020111", + "t": "15000201", "n": 20 } ], diff --git a/bin/json/game_herostarup.json b/bin/json/game_herostarup.json index c280554e2..0538b7d7f 100644 --- a/bin/json/game_herostarup.json +++ b/bin/json/game_herostarup.json @@ -11,7 +11,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -35,7 +35,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -59,7 +59,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -90,7 +90,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -114,7 +114,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -138,7 +138,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -175,7 +175,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -199,7 +199,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -223,7 +223,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -260,7 +260,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -284,7 +284,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -308,7 +308,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -345,7 +345,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -369,7 +369,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -393,7 +393,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -430,7 +430,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -454,7 +454,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -491,7 +491,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -515,7 +515,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -552,7 +552,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -576,7 +576,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -613,7 +613,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -637,7 +637,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -674,7 +674,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -698,7 +698,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -735,7 +735,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -759,7 +759,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -796,7 +796,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -820,7 +820,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -857,7 +857,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -894,7 +894,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -931,7 +931,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -968,7 +968,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1005,7 +1005,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -1029,7 +1029,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1053,7 +1053,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1090,7 +1090,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -1114,7 +1114,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1138,7 +1138,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1175,7 +1175,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -1199,7 +1199,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1223,7 +1223,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1260,7 +1260,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -1284,7 +1284,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1308,7 +1308,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1345,7 +1345,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1369,7 +1369,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1406,7 +1406,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -1430,7 +1430,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1454,7 +1454,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1485,7 +1485,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1509,7 +1509,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1546,7 +1546,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1570,7 +1570,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1607,7 +1607,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1631,7 +1631,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1668,7 +1668,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1692,7 +1692,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1729,7 +1729,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1753,7 +1753,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1790,7 +1790,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1814,7 +1814,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1851,7 +1851,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -1875,7 +1875,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1912,7 +1912,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1949,7 +1949,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -1986,7 +1986,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2023,7 +2023,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2060,7 +2060,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -2084,7 +2084,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2108,7 +2108,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2145,7 +2145,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -2169,7 +2169,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2193,7 +2193,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2230,7 +2230,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -2254,7 +2254,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2278,7 +2278,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2315,7 +2315,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -2339,7 +2339,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2363,7 +2363,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2400,7 +2400,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -2424,7 +2424,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2448,7 +2448,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2485,7 +2485,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -2509,7 +2509,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2533,7 +2533,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2570,7 +2570,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2594,7 +2594,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2631,7 +2631,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2655,7 +2655,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2692,7 +2692,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2716,7 +2716,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2753,7 +2753,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2777,7 +2777,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2814,7 +2814,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2838,7 +2838,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2875,7 +2875,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2899,7 +2899,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2936,7 +2936,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -2960,7 +2960,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -2997,7 +2997,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3021,7 +3021,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3058,7 +3058,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3095,7 +3095,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3132,7 +3132,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3169,7 +3169,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3206,7 +3206,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3243,7 +3243,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3280,7 +3280,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -3304,7 +3304,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3328,7 +3328,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3365,7 +3365,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -3389,7 +3389,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3413,7 +3413,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3450,7 +3450,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -3474,7 +3474,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3498,7 +3498,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3535,7 +3535,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -3559,7 +3559,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3583,7 +3583,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3620,7 +3620,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -3644,7 +3644,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3668,7 +3668,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3705,7 +3705,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -3729,7 +3729,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3753,7 +3753,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3790,7 +3790,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -3814,7 +3814,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3838,7 +3838,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3875,7 +3875,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3899,7 +3899,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3936,7 +3936,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -3960,7 +3960,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -3997,7 +3997,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -4021,7 +4021,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4058,7 +4058,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -4082,7 +4082,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4119,7 +4119,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -4143,7 +4143,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4180,7 +4180,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4217,7 +4217,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4254,7 +4254,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4291,7 +4291,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4328,7 +4328,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -4352,7 +4352,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4389,7 +4389,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4426,7 +4426,7 @@ }, { "a": "item", - "t": "600005", + "t": "10000011", "n": 3 } ], @@ -4450,7 +4450,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -4474,7 +4474,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4511,7 +4511,7 @@ }, { "a": "item", - "t": "600006", + "t": "10000012", "n": 4 } ], @@ -4535,7 +4535,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], @@ -4572,7 +4572,7 @@ }, { "a": "item", - "t": "600007", + "t": "10000013", "n": 5 } ], diff --git a/bin/json/game_horoscope.json b/bin/json/game_horoscope.json index 965d6d70b..d5bacc3ce 100644 --- a/bin/json/game_horoscope.json +++ b/bin/json/game_horoscope.json @@ -433,8 +433,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_12", "text": "攻击提升(二)" @@ -470,8 +470,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_13", "text": "攻击提升(二)" @@ -507,8 +507,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_14", "text": "攻击提升(二)" @@ -544,8 +544,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_15", "text": "攻击提升(二)" @@ -581,8 +581,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_16", "text": "攻击提升(二)" @@ -618,8 +618,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_17", "text": "攻击提升(二)" @@ -659,8 +659,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_18", "text": "攻击提升(二)" @@ -700,8 +700,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_19", "text": "攻击提升(二)" @@ -741,8 +741,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_20", "text": "攻击提升(二)" @@ -782,8 +782,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_21", "text": "攻击提升(二)" @@ -823,8 +823,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 45, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_22", "text": "攻击提升(二)" @@ -857,9 +857,9 @@ 100205 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_23", "text": "攻击提升(三)" @@ -894,9 +894,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_24", "text": "攻击提升(三)" @@ -931,9 +931,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_25", "text": "攻击提升(三)" @@ -968,9 +968,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_26", "text": "攻击提升(三)" @@ -1005,9 +1005,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_27", "text": "攻击提升(三)" @@ -1042,9 +1042,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_28", "text": "攻击提升(三)" @@ -1083,9 +1083,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_29", "text": "攻击提升(三)" @@ -1124,9 +1124,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_30", "text": "攻击提升(三)" @@ -1165,9 +1165,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_31", "text": "攻击提升(三)" @@ -1206,9 +1206,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_32", "text": "攻击提升(三)" @@ -1247,9 +1247,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, + "pre_node": 1002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_33", "text": "攻击提升(三)" @@ -1282,9 +1282,9 @@ 100305 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 135, - "node_long": 200, + "pre_node": 1003, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_34", "text": "攻击提升(四)" @@ -1319,9 +1319,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 135, - "node_long": 200, + "pre_node": 1003, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_35", "text": "攻击提升(四)" @@ -1356,9 +1356,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 135, - "node_long": 200, + "pre_node": 1003, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_36", "text": "攻击提升(四)" @@ -1393,9 +1393,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 135, - "node_long": 200, + "pre_node": 1003, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_37", "text": "攻击提升(四)" @@ -1430,9 +1430,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 135, - "node_long": 200, + "pre_node": 1003, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_38", "text": "攻击提升(四)" @@ -1467,9 +1467,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 135, - "node_long": 200, + "pre_node": 1003, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_39", "text": "攻击提升(四)" @@ -1497,10 +1497,10 @@ "front": [ 100105 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_40", "text": "攻击提升(四)" @@ -1534,10 +1534,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_41", "text": "攻击提升(四)" @@ -1571,10 +1571,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_42", "text": "攻击提升(四)" @@ -1608,10 +1608,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_43", "text": "攻击提升(四)" @@ -1645,10 +1645,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_44", "text": "攻击提升(四)" @@ -1682,10 +1682,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_45", "text": "不想取名" @@ -1723,10 +1723,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_46", "text": "不想取名" @@ -1764,10 +1764,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_47", "text": "不想取名" @@ -1805,10 +1805,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_48", "text": "不想取名" @@ -1846,10 +1846,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_49", "text": "不想取名" @@ -1887,10 +1887,10 @@ "front": [ 0 ], - "node_type": 1, - "pre_node": 1001, - "node_direction": 180, - "node_long": 200, + "node_type": 2, + "pre_node": 1004, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_50", "text": "不想取名" @@ -1923,9 +1923,9 @@ 100505 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_51", "text": "不想起名" @@ -1960,9 +1960,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_52", "text": "不想起名" @@ -1997,9 +1997,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_53", "text": "不想起名" @@ -2034,9 +2034,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_54", "text": "不想起名" @@ -2071,9 +2071,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_55", "text": "不想起名" @@ -2108,9 +2108,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_56", "text": "不想起名" @@ -2149,9 +2149,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_57", "text": "不想起名" @@ -2190,9 +2190,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_58", "text": "不想起名" @@ -2231,9 +2231,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_59", "text": "不想起名" @@ -2272,9 +2272,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_60", "text": "不想起名" @@ -2313,9 +2313,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 225, - "node_long": 200, + "pre_node": 1005, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_61", "text": "不想起名" @@ -2348,9 +2348,9 @@ 100605 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_62", "text": "等人起名" @@ -2385,9 +2385,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_63", "text": "等人起名" @@ -2422,9 +2422,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_64", "text": "等人起名" @@ -2459,9 +2459,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_65", "text": "等人起名" @@ -2496,9 +2496,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_66", "text": "等人起名" @@ -2533,9 +2533,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_67", "text": "等人起名" @@ -2564,9 +2564,9 @@ 100705 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_68", "text": "不想取名" @@ -2601,9 +2601,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_69", "text": "不想取名" @@ -2638,9 +2638,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_70", "text": "不想取名" @@ -2675,9 +2675,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_71", "text": "不想取名" @@ -2712,9 +2712,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_72", "text": "不想取名" @@ -2749,9 +2749,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_73", "text": "不想取名" @@ -2790,9 +2790,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_74", "text": "不想取名" @@ -2831,9 +2831,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_75", "text": "不想取名" @@ -2872,9 +2872,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_76", "text": "不想取名" @@ -2913,9 +2913,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_77", "text": "不想取名" @@ -2954,9 +2954,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_78", "text": "不想取名" @@ -2995,9 +2995,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_79", "text": "不想取名" @@ -3036,9 +3036,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_80", "text": "不想取名" @@ -3077,9 +3077,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_81", "text": "不想取名" @@ -3118,9 +3118,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_82", "text": "不想取名" @@ -3159,9 +3159,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_83", "text": "不想取名" @@ -3200,9 +3200,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_84", "text": "不想取名" @@ -3241,9 +3241,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_85", "text": "不想取名" @@ -3282,9 +3282,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_86", "text": "不想取名" @@ -3323,9 +3323,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_87", "text": "不想取名" @@ -3364,9 +3364,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 270, - "node_long": 200, + "pre_node": 1007, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_88", "text": "不想取名" @@ -3400,8 +3400,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_89", "text": "不想起名" @@ -3437,8 +3437,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_90", "text": "不想起名" @@ -3474,8 +3474,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_91", "text": "不想起名" @@ -3511,8 +3511,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_92", "text": "不想起名" @@ -3548,8 +3548,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_93", "text": "不想起名" @@ -3585,8 +3585,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_94", "text": "不想起名" @@ -3626,8 +3626,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_95", "text": "不想起名" @@ -3667,8 +3667,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_96", "text": "不想起名" @@ -3708,8 +3708,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_97", "text": "不想起名" @@ -3749,8 +3749,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_98", "text": "不想起名" @@ -3790,8 +3790,8 @@ ], "node_type": 1, "pre_node": 1001, - "node_direction": 315, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_99", "text": "不想起名" @@ -3824,9 +3824,9 @@ 200205 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_100", "text": "等人起名" @@ -3861,9 +3861,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_101", "text": "等人起名" @@ -3898,9 +3898,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_102", "text": "等人起名" @@ -3935,9 +3935,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_103", "text": "等人起名" @@ -3972,9 +3972,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_104", "text": "等人起名" @@ -4009,9 +4009,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_105", "text": "等人起名" @@ -4050,9 +4050,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_106", "text": "等人起名" @@ -4091,9 +4091,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_107", "text": "等人起名" @@ -4132,9 +4132,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_108", "text": "等人起名" @@ -4173,9 +4173,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_109", "text": "等人起名" @@ -4214,9 +4214,9 @@ 0 ], "node_type": 1, - "pre_node": 1001, - "node_direction": 360, - "node_long": 200, + "pre_node": 2002, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_110", "text": "等人起名" @@ -4248,10 +4248,10 @@ "front": [ 200305 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_111", "text": "不想起名" @@ -4285,10 +4285,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_112", "text": "不想起名" @@ -4322,10 +4322,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_113", "text": "不想起名" @@ -4359,10 +4359,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_114", "text": "不想起名" @@ -4396,10 +4396,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_115", "text": "不想起名" @@ -4433,10 +4433,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_116", "text": "不想起名" @@ -4474,10 +4474,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_117", "text": "不想起名" @@ -4515,10 +4515,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_118", "text": "不想起名" @@ -4556,10 +4556,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_119", "text": "不想起名" @@ -4597,10 +4597,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_120", "text": "不想起名" @@ -4638,10 +4638,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 3, "pre_node": 2003, - "node_direction": 360, - "node_long": 200, + "node_direction": 270, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_121", "text": "不想起名" @@ -4675,8 +4675,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_122", "text": "等人起名" @@ -4712,8 +4712,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_123", "text": "等人起名" @@ -4749,8 +4749,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_124", "text": "等人起名" @@ -4786,8 +4786,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_125", "text": "等人起名" @@ -4823,8 +4823,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_126", "text": "等人起名" @@ -4860,8 +4860,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_127", "text": "等人起名" @@ -4901,8 +4901,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_128", "text": "等人起名" @@ -4942,8 +4942,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_129", "text": "等人起名" @@ -4983,8 +4983,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_130", "text": "等人起名" @@ -5024,8 +5024,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_131", "text": "等人起名" @@ -5065,8 +5065,8 @@ ], "node_type": 1, "pre_node": 2004, - "node_direction": 45, - "node_long": 200, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_132", "text": "等人起名" @@ -5099,9 +5099,9 @@ 200505 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_133", "text": "不想起名" @@ -5136,9 +5136,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_134", "text": "不想起名" @@ -5173,9 +5173,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_135", "text": "不想起名" @@ -5210,9 +5210,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_136", "text": "不想起名" @@ -5247,9 +5247,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_137", "text": "不想起名" @@ -5284,9 +5284,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_138", "text": "不想起名" @@ -5325,9 +5325,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_139", "text": "不想起名" @@ -5366,9 +5366,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_140", "text": "不想起名" @@ -5407,9 +5407,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_141", "text": "不想起名" @@ -5448,9 +5448,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_142", "text": "不想起名" @@ -5489,9 +5489,9 @@ 0 ], "node_type": 1, - "pre_node": 2004, - "node_direction": 315, - "node_long": 200, + "pre_node": 2005, + "node_direction": 225, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_143", "text": "不想起名" @@ -5524,9 +5524,9 @@ 200605 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_144", "text": "等人起名" @@ -5561,9 +5561,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_145", "text": "等人起名" @@ -5598,9 +5598,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_146", "text": "等人起名" @@ -5635,9 +5635,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_147", "text": "等人起名" @@ -5672,9 +5672,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_148", "text": "等人起名" @@ -5709,9 +5709,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_149", "text": "等人起名" @@ -5750,9 +5750,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_150", "text": "等人起名" @@ -5791,9 +5791,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_151", "text": "等人起名" @@ -5832,9 +5832,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_152", "text": "等人起名" @@ -5873,9 +5873,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_153", "text": "等人起名" @@ -5914,9 +5914,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 30, - "node_long": 100, + "pre_node": 2006, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_154", "text": "等人起名" @@ -5949,9 +5949,9 @@ 200110 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_155", "text": "不想起名" @@ -5986,9 +5986,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_156", "text": "不想起名" @@ -6023,9 +6023,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_157", "text": "不想起名" @@ -6060,9 +6060,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_158", "text": "不想起名" @@ -6097,9 +6097,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_159", "text": "不想起名" @@ -6134,9 +6134,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_160", "text": "不想起名" @@ -6175,9 +6175,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_161", "text": "不想起名" @@ -6216,9 +6216,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_162", "text": "不想起名" @@ -6257,9 +6257,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_163", "text": "不想起名" @@ -6298,9 +6298,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_164", "text": "不想起名" @@ -6339,9 +6339,9 @@ 0 ], "node_type": 1, - "pre_node": 2003, - "node_direction": 330, - "node_long": 100, + "pre_node": 1001, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_165", "text": "不想起名" @@ -6374,9 +6374,9 @@ 200805 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_166", "text": "等人起名" @@ -6411,9 +6411,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_167", "text": "等人起名" @@ -6448,9 +6448,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_168", "text": "等人起名" @@ -6485,9 +6485,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_169", "text": "等人起名" @@ -6522,9 +6522,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_170", "text": "等人起名" @@ -6559,9 +6559,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_171", "text": "等人起名" @@ -6600,9 +6600,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_172", "text": "等人起名" @@ -6641,9 +6641,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_173", "text": "等人起名" @@ -6682,9 +6682,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_174", "text": "等人起名" @@ -6723,9 +6723,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_175", "text": "等人起名" @@ -6764,9 +6764,9 @@ 0 ], "node_type": 1, - "pre_node": 2007, - "node_direction": 90, - "node_long": 200, + "pre_node": 2008, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_176", "text": "等人起名" @@ -6799,9 +6799,9 @@ 200905 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_177", "text": "不想起名" @@ -6836,9 +6836,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_178", "text": "不想起名" @@ -6873,9 +6873,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_179", "text": "不想起名" @@ -6910,9 +6910,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_180", "text": "不想起名" @@ -6947,9 +6947,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_181", "text": "不想起名" @@ -6984,9 +6984,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_182", "text": "不想起名" @@ -7025,9 +7025,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_183", "text": "不想起名" @@ -7066,9 +7066,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_184", "text": "不想起名" @@ -7107,9 +7107,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_185", "text": "不想起名" @@ -7148,9 +7148,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_186", "text": "不想起名" @@ -7189,9 +7189,9 @@ 0 ], "node_type": 1, - "pre_node": 2008, - "node_direction": 270, - "node_long": 200, + "pre_node": 2009, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_187", "text": "不想起名" @@ -7223,10 +7223,10 @@ "front": [ 200110 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_188", "text": "等人起名" @@ -7260,10 +7260,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_189", "text": "等人起名" @@ -7297,10 +7297,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_190", "text": "等人起名" @@ -7334,10 +7334,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_191", "text": "等人起名" @@ -7371,10 +7371,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_192", "text": "等人起名" @@ -7408,10 +7408,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_193", "text": "等人起名" @@ -7449,10 +7449,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_194", "text": "等人起名" @@ -7490,10 +7490,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_195", "text": "等人起名" @@ -7531,10 +7531,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_196", "text": "等人起名" @@ -7572,10 +7572,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_197", "text": "等人起名" @@ -7613,10 +7613,10 @@ "front": [ 0 ], - "node_type": 1, + "node_type": 4, "pre_node": 2010, - "node_direction": 360, - "node_long": 200, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_198", "text": "等人起名" @@ -7649,9 +7649,9 @@ 201105 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_199", "text": "不想起名" @@ -7686,9 +7686,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_200", "text": "不想起名" @@ -7723,9 +7723,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_201", "text": "不想起名" @@ -7760,9 +7760,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_202", "text": "不想起名" @@ -7797,9 +7797,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_203", "text": "不想起名" @@ -7834,9 +7834,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_204", "text": "不想起名" @@ -7875,9 +7875,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_205", "text": "不想起名" @@ -7916,9 +7916,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_206", "text": "不想起名" @@ -7957,9 +7957,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_207", "text": "不想起名" @@ -7998,9 +7998,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_208", "text": "不想起名" @@ -8039,9 +8039,9 @@ 0 ], "node_type": 1, - "pre_node": 2011, - "node_direction": 360, - "node_long": 200, + "pre_node": 2009, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_209", "text": "不想起名" @@ -8074,9 +8074,9 @@ 201205 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_210", "text": "等人起名" @@ -8111,9 +8111,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_211", "text": "等人起名" @@ -8148,9 +8148,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_212", "text": "等人起名" @@ -8185,9 +8185,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_213", "text": "等人起名" @@ -8222,9 +8222,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_214", "text": "等人起名" @@ -8259,9 +8259,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_215", "text": "等人起名" @@ -8300,9 +8300,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_216", "text": "等人起名" @@ -8341,9 +8341,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_217", "text": "攻击强化" @@ -8382,9 +8382,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_218", "text": "等人起名" @@ -8423,9 +8423,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_219", "text": "等人起名" @@ -8464,9 +8464,9 @@ 0 ], "node_type": 1, - "pre_node": 2010, + "pre_node": 2009, "node_direction": 270, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_220", "text": "等人起名" @@ -8499,9 +8499,9 @@ 200110 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_221", "text": "不想起名" @@ -8536,9 +8536,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_222", "text": "不想起名" @@ -8573,9 +8573,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_223", "text": "不想起名" @@ -8610,9 +8610,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_224", "text": "不想起名" @@ -8647,9 +8647,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_225", "text": "不想起名" @@ -8684,9 +8684,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_226", "text": "不想起名" @@ -8725,9 +8725,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_227", "text": "不想起名" @@ -8766,9 +8766,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_228", "text": "不想起名" @@ -8807,9 +8807,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_229", "text": "不想起名" @@ -8848,9 +8848,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_230", "text": "不想起名" @@ -8889,9 +8889,9 @@ 0 ], "node_type": 1, - "pre_node": 2013, - "node_direction": 270, - "node_long": 200, + "pre_node": 2011, + "node_direction": 315, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_231", "text": "不想起名" @@ -8925,8 +8925,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_232", "text": "等人起名" @@ -8962,8 +8962,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_233", "text": "等人起名" @@ -8999,8 +8999,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_234", "text": "等人起名" @@ -9036,8 +9036,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_235", "text": "等人起名" @@ -9073,8 +9073,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_236", "text": "等人起名" @@ -9110,8 +9110,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_237", "text": "等人起名" @@ -9151,8 +9151,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_238", "text": "等人起名" @@ -9192,8 +9192,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_239", "text": "等人起名" @@ -9233,8 +9233,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_240", "text": "等人起名" @@ -9274,8 +9274,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_241", "text": "等人起名" @@ -9315,8 +9315,8 @@ ], "node_type": 1, "pre_node": 2014, - "node_direction": 360, - "node_long": 200, + "node_direction": 45, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_242", "text": "等人起名" @@ -9350,8 +9350,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_243", "text": "不想起名" @@ -9387,8 +9387,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_244", "text": "不想起名" @@ -9424,8 +9424,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_245", "text": "不想起名" @@ -9461,8 +9461,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_246", "text": "不想起名" @@ -9498,8 +9498,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_247", "text": "不想起名" @@ -9535,8 +9535,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_248", "text": "不想起名" @@ -9576,8 +9576,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_249", "text": "不想起名" @@ -9617,8 +9617,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_250", "text": "不想起名" @@ -9658,8 +9658,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_251", "text": "不想起名" @@ -9699,8 +9699,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_252", "text": "不想起名" @@ -9740,8 +9740,8 @@ ], "node_type": 1, "pre_node": 2015, - "node_direction": 360, - "node_long": 200, + "node_direction": 135, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_253", "text": "不想起名" @@ -9774,9 +9774,9 @@ 201605 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_254", "text": "等人起名" @@ -9811,9 +9811,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_255", "text": "等人起名" @@ -9848,9 +9848,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_256", "text": "等人起名" @@ -9885,9 +9885,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_257", "text": "等人起名" @@ -9922,9 +9922,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_258", "text": "等人起名" @@ -9959,9 +9959,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_259", "text": "等人起名" @@ -10000,9 +10000,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_260", "text": "等人起名" @@ -10041,9 +10041,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_261", "text": "等人起名" @@ -10082,9 +10082,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_262", "text": "等人起名" @@ -10123,9 +10123,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_263", "text": "等人起名" @@ -10164,9 +10164,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_264", "text": "等人起名" @@ -10205,9 +10205,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_265", "text": "等人起名" @@ -10246,9 +10246,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_266", "text": "等人起名" @@ -10287,9 +10287,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_267", "text": "等人起名" @@ -10328,9 +10328,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_268", "text": "等人起名" @@ -10369,9 +10369,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_269", "text": "等人起名" @@ -10410,9 +10410,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_270", "text": "等人起名" @@ -10451,9 +10451,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_271", "text": "等人起名" @@ -10492,9 +10492,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_272", "text": "等人起名" @@ -10533,9 +10533,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_273", "text": "等人起名" @@ -10574,9 +10574,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, - "node_direction": 270, - "node_long": 200, + "pre_node": 0, + "node_direction": 0, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_274", "text": "等人起名" @@ -10609,9 +10609,9 @@ 300110 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_275", "text": "不想起名" @@ -10646,9 +10646,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_276", "text": "不想起名" @@ -10683,9 +10683,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_277", "text": "不想起名" @@ -10720,9 +10720,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_278", "text": "不想起名" @@ -10757,9 +10757,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_279", "text": "不想起名" @@ -10794,9 +10794,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_280", "text": "不想起名" @@ -10835,9 +10835,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_281", "text": "不想起名" @@ -10876,9 +10876,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_282", "text": "不想起名" @@ -10917,9 +10917,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_283", "text": "不想起名" @@ -10958,9 +10958,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_284", "text": "不想起名" @@ -10999,9 +10999,9 @@ 0 ], "node_type": 1, - "pre_node": 2014, + "pre_node": 3001, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_285", "text": "不想起名" @@ -11036,7 +11036,7 @@ "node_type": 1, "pre_node": 3002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_286", "text": "不想取名" @@ -11073,7 +11073,7 @@ "node_type": 1, "pre_node": 3002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_287", "text": "不想取名" @@ -11110,7 +11110,7 @@ "node_type": 1, "pre_node": 3002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_288", "text": "不想取名" @@ -11147,7 +11147,7 @@ "node_type": 1, "pre_node": 3002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_289", "text": "不想取名" @@ -11184,7 +11184,7 @@ "node_type": 1, "pre_node": 3002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_290", "text": "不想取名" @@ -11221,7 +11221,7 @@ "node_type": 1, "pre_node": 3002, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_291", "text": "不想取名" @@ -11258,7 +11258,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_292", "text": "不想起名" @@ -11295,7 +11295,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_293", "text": "不想起名" @@ -11332,7 +11332,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_294", "text": "不想起名" @@ -11369,7 +11369,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_295", "text": "不想起名" @@ -11406,7 +11406,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_296", "text": "不想起名" @@ -11443,7 +11443,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_297", "text": "不想起名" @@ -11484,7 +11484,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_298", "text": "不想起名" @@ -11525,7 +11525,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_299", "text": "不想起名" @@ -11566,7 +11566,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_300", "text": "不想起名" @@ -11607,7 +11607,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_301", "text": "不想起名" @@ -11648,7 +11648,7 @@ "node_type": 1, "pre_node": 3003, "node_direction": 90, - "node_long": 200, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_302", "text": "不想起名" @@ -11682,8 +11682,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_303", "text": "不想取名" @@ -11719,8 +11719,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_304", "text": "不想取名" @@ -11756,8 +11756,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_305", "text": "不想取名" @@ -11793,8 +11793,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_306", "text": "不想取名" @@ -11830,8 +11830,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_307", "text": "不想取名" @@ -11867,8 +11867,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_308", "text": "不想取名" @@ -11908,8 +11908,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_309", "text": "不想取名" @@ -11949,8 +11949,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_310", "text": "不想取名" @@ -11990,8 +11990,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_311", "text": "不想取名" @@ -12031,8 +12031,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_312", "text": "不想取名" @@ -12072,8 +12072,8 @@ ], "node_type": 1, "pre_node": 3004, - "node_direction": 270, - "node_long": 200, + "node_direction": 90, + "node_long": 120, "name": { "key": "horoscope_horoscope_name_313", "text": "不想取名" diff --git a/bin/json/game_huntingboss.json b/bin/json/game_huntingboss.json index 6374f06c1..11557b78b 100644 --- a/bin/json/game_huntingboss.json +++ b/bin/json/game_huntingboss.json @@ -18,12 +18,12 @@ "dropshow": [ { "a": "item", - "t": "14010101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14010102", + "t": "15000201", "n": 1 } ], @@ -66,12 +66,12 @@ "dropshow": [ { "a": "item", - "t": "14010101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14010102", + "t": "15000201", "n": 1 } ], @@ -114,12 +114,12 @@ "dropshow": [ { "a": "item", - "t": "14010101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14010102", + "t": "15000201", "n": 1 } ], @@ -162,12 +162,12 @@ "dropshow": [ { "a": "item", - "t": "14010101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14010102", + "t": "15000201", "n": 1 } ], @@ -210,12 +210,12 @@ "dropshow": [ { "a": "item", - "t": "14010101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14010102", + "t": "15000201", "n": 1 } ], @@ -258,12 +258,12 @@ "dropshow": [ { "a": "item", - "t": "14020101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14020102", + "t": "15000201", "n": 1 } ], @@ -306,12 +306,12 @@ "dropshow": [ { "a": "item", - "t": "14020101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14020102", + "t": "15000201", "n": 1 } ], @@ -354,12 +354,12 @@ "dropshow": [ { "a": "item", - "t": "14020101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14020102", + "t": "15000201", "n": 1 } ], @@ -402,12 +402,12 @@ "dropshow": [ { "a": "item", - "t": "14020101", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14020102", + "t": "15000201", "n": 1 } ], @@ -450,12 +450,12 @@ "dropshow": [ { "a": "item", - "t": "14010111", + "t": "15000101", "n": 1 }, { "a": "item", - "t": "14010111", + "t": "15000201", "n": 1 } ], @@ -498,12 +498,12 @@ "dropshow": [ { "a": "item", - "t": "14010203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14010204", + "t": "15000204", "n": 1 } ], @@ -546,12 +546,12 @@ "dropshow": [ { "a": "item", - "t": "14010203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14010204", + "t": "15000204", "n": 1 } ], @@ -594,12 +594,12 @@ "dropshow": [ { "a": "item", - "t": "14010203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14010204", + "t": "15000204", "n": 1 } ], @@ -642,12 +642,12 @@ "dropshow": [ { "a": "item", - "t": "14020203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14020204", + "t": "15000204", "n": 1 } ], @@ -690,12 +690,12 @@ "dropshow": [ { "a": "item", - "t": "14020203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14020204", + "t": "15000204", "n": 1 } ], @@ -738,12 +738,12 @@ "dropshow": [ { "a": "item", - "t": "14020203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14020204", + "t": "15000204", "n": 1 } ], @@ -786,12 +786,12 @@ "dropshow": [ { "a": "item", - "t": "14020203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14020204", + "t": "15000204", "n": 1 } ], @@ -834,12 +834,12 @@ "dropshow": [ { "a": "item", - "t": "14020203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14020204", + "t": "15000204", "n": 1 } ], @@ -882,12 +882,12 @@ "dropshow": [ { "a": "item", - "t": "14030203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14030204", + "t": "15000204", "n": 1 } ], @@ -930,12 +930,12 @@ "dropshow": [ { "a": "item", - "t": "14030203", + "t": "15000204", "n": 1 }, { "a": "item", - "t": "14030204", + "t": "15000204", "n": 1 } ], @@ -978,12 +978,12 @@ "dropshow": [ { "a": "item", - "t": "14010305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14010305", + "t": "15000303", "n": 1 } ], @@ -1026,12 +1026,12 @@ "dropshow": [ { "a": "item", - "t": "14010305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14010305", + "t": "15000303", "n": 1 } ], @@ -1074,12 +1074,12 @@ "dropshow": [ { "a": "item", - "t": "14010305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14010305", + "t": "15000303", "n": 1 } ], @@ -1122,12 +1122,12 @@ "dropshow": [ { "a": "item", - "t": "14020305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14020305", + "t": "15000303", "n": 1 } ], @@ -1170,12 +1170,12 @@ "dropshow": [ { "a": "item", - "t": "14020305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14020305", + "t": "15000303", "n": 1 } ], @@ -1218,12 +1218,12 @@ "dropshow": [ { "a": "item", - "t": "14020305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14020305", + "t": "15000303", "n": 1 } ], @@ -1266,12 +1266,12 @@ "dropshow": [ { "a": "item", - "t": "14020305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14020305", + "t": "15000303", "n": 1 } ], @@ -1314,12 +1314,12 @@ "dropshow": [ { "a": "item", - "t": "14020305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14020305", + "t": "15000303", "n": 1 } ], @@ -1362,12 +1362,12 @@ "dropshow": [ { "a": "item", - "t": "14030305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14030305", + "t": "15000303", "n": 1 } ], @@ -1410,12 +1410,12 @@ "dropshow": [ { "a": "item", - "t": "14030305", + "t": "15000302", "n": 1 }, { "a": "item", - "t": "14030305", + "t": "15000303", "n": 1 } ], @@ -1458,12 +1458,12 @@ "dropshow": [ { "a": "item", - "t": "14010407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14010407", + "t": "15000303", "n": 1 } ], @@ -1506,12 +1506,12 @@ "dropshow": [ { "a": "item", - "t": "14010407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14010407", + "t": "15000303", "n": 1 } ], @@ -1554,12 +1554,12 @@ "dropshow": [ { "a": "item", - "t": "14010407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14010407", + "t": "15000303", "n": 1 } ], @@ -1602,12 +1602,12 @@ "dropshow": [ { "a": "item", - "t": "14010407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14010407", + "t": "15000303", "n": 1 } ], @@ -1650,12 +1650,12 @@ "dropshow": [ { "a": "item", - "t": "14020407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14020407", + "t": "15000303", "n": 1 } ], @@ -1698,12 +1698,12 @@ "dropshow": [ { "a": "item", - "t": "14020407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14020407", + "t": "15000303", "n": 1 } ], @@ -1746,12 +1746,12 @@ "dropshow": [ { "a": "item", - "t": "14020407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14020407", + "t": "15000303", "n": 1 } ], @@ -1794,12 +1794,12 @@ "dropshow": [ { "a": "item", - "t": "14020407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14020407", + "t": "15000303", "n": 1 } ], @@ -1842,12 +1842,12 @@ "dropshow": [ { "a": "item", - "t": "14030407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14030407", + "t": "15000303", "n": 1 } ], @@ -1890,12 +1890,12 @@ "dropshow": [ { "a": "item", - "t": "14030407", + "t": "15000304", "n": 1 }, { "a": "item", - "t": "14030407", + "t": "15000303", "n": 1 } ], diff --git a/bin/json/game_huntingchallenge.json b/bin/json/game_huntingchallenge.json deleted file mode 100644 index a77c0e0e2..000000000 --- a/bin/json/game_huntingchallenge.json +++ /dev/null @@ -1,102 +0,0 @@ -[ - { - "buynum": 1, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 10 - } - ] - }, - { - "buynum": 2, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 20 - } - ] - }, - { - "buynum": 3, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 30 - } - ] - }, - { - "buynum": 4, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 40 - } - ] - }, - { - "buynum": 5, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 50 - } - ] - }, - { - "buynum": 6, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 60 - } - ] - }, - { - "buynum": 7, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 70 - } - ] - }, - { - "buynum": 8, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 80 - } - ] - }, - { - "buynum": 9, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 90 - } - ] - }, - { - "buynum": 10, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 100 - } - ] - } -] \ No newline at end of file diff --git a/bin/json/game_initial.json b/bin/json/game_initial.json index 3ad90386c..8003b132a 100644 --- a/bin/json/game_initial.json +++ b/bin/json/game_initial.json @@ -24,7 +24,7 @@ "var": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 100 } ] @@ -74,7 +74,7 @@ "var": [ { "a": "item", - "t": "600001", + "t": "10000004", "n": 100 } ] @@ -84,7 +84,7 @@ "var": [ { "a": "item", - "t": "10017", + "t": "10000003", "n": 100 } ] @@ -94,7 +94,7 @@ "var": [ { "a": "item", - "t": "100100", + "t": "18000007", "n": 100 } ] @@ -104,7 +104,7 @@ "var": [ { "a": "item", - "t": "100004", + "t": "18000004", "n": 10 } ] @@ -114,7 +114,7 @@ "var": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 100 } ] @@ -124,7 +124,7 @@ "var": [ { "a": "item", - "t": "600003", + "t": "10000009", "n": 100 } ] @@ -134,7 +134,7 @@ "var": [ { "a": "item", - "t": "600004", + "t": "10000010", "n": 100 } ] @@ -144,7 +144,7 @@ "var": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 100 } ] @@ -154,7 +154,7 @@ "var": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 100 } ] @@ -164,7 +164,7 @@ "var": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 100 } ] @@ -224,7 +224,7 @@ "var": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 300 } ] @@ -234,7 +234,7 @@ "var": [ { "a": "item", - "t": "120002", + "t": "13001002", "n": 300 } ] @@ -244,7 +244,7 @@ "var": [ { "a": "item", - "t": "120003", + "t": "13001003", "n": 300 } ] @@ -254,7 +254,7 @@ "var": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 300 } ] @@ -264,7 +264,7 @@ "var": [ { "a": "item", - "t": "120005", + "t": "13002002", "n": 300 } ] @@ -274,7 +274,7 @@ "var": [ { "a": "item", - "t": "120006", + "t": "13002003", "n": 300 } ] @@ -284,7 +284,7 @@ "var": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 300 } ] @@ -294,7 +294,7 @@ "var": [ { "a": "item", - "t": "120008", + "t": "13003002", "n": 300 } ] @@ -304,7 +304,7 @@ "var": [ { "a": "item", - "t": "120009", + "t": "13003003", "n": 300 } ] @@ -314,7 +314,7 @@ "var": [ { "a": "item", - "t": "120101", + "t": "13000001", "n": 300 } ] @@ -324,7 +324,7 @@ "var": [ { "a": "item", - "t": "120102", + "t": "13000002", "n": 300 } ] @@ -334,7 +334,7 @@ "var": [ { "a": "item", - "t": "120103", + "t": "13000003", "n": 300 } ] @@ -344,7 +344,7 @@ "var": [ { "a": "item", - "t": "120104", + "t": "13000004", "n": 300 } ] @@ -354,7 +354,7 @@ "var": [ { "a": "item", - "t": "100001", + "t": "18000001", "n": 60 } ] @@ -384,7 +384,7 @@ "var": [ { "a": "item", - "t": "132001", + "t": "14020001", "n": 50 } ] @@ -394,7 +394,7 @@ "var": [ { "a": "item", - "t": "132002", + "t": "14020002", "n": 50 } ] @@ -404,7 +404,7 @@ "var": [ { "a": "item", - "t": "132003", + "t": "14020003", "n": 50 } ] @@ -414,7 +414,7 @@ "var": [ { "a": "item", - "t": "132004", + "t": "14020004", "n": 50 } ] @@ -424,7 +424,7 @@ "var": [ { "a": "item", - "t": "132005", + "t": "14020005", "n": 50 } ] @@ -434,7 +434,7 @@ "var": [ { "a": "item", - "t": "132006", + "t": "14020006", "n": 50 } ] @@ -444,7 +444,7 @@ "var": [ { "a": "item", - "t": "132007", + "t": "14020007", "n": 50 } ] @@ -454,7 +454,7 @@ "var": [ { "a": "item", - "t": "132008", + "t": "14020008", "n": 50 } ] @@ -464,7 +464,7 @@ "var": [ { "a": "item", - "t": "132009", + "t": "14020009", "n": 50 } ] @@ -474,7 +474,7 @@ "var": [ { "a": "item", - "t": "131001", + "t": "14010001", "n": 50 } ] @@ -484,7 +484,7 @@ "var": [ { "a": "item", - "t": "131002", + "t": "14010002", "n": 50 } ] @@ -494,7 +494,7 @@ "var": [ { "a": "item", - "t": "131003", + "t": "14010003", "n": 50 } ] @@ -504,7 +504,7 @@ "var": [ { "a": "item", - "t": "131004", + "t": "14010004", "n": 50 } ] @@ -514,7 +514,7 @@ "var": [ { "a": "item", - "t": "131005", + "t": "14010005", "n": 50 } ] @@ -1614,7 +1614,7 @@ "var": [ { "a": "item", - "t": "151001", + "t": "10000006", "n": 10 } ] diff --git a/bin/json/game_item.json b/bin/json/game_item.json index 31f8fb4c5..baca781e6 100644 --- a/bin/json/game_item.json +++ b/bin/json/game_item.json @@ -1,11 +1,11 @@ [ { - "id": "30001", + "id": "10000001", "name": { "key": "item_item_name_1", "text": "时空石" }, - "usetype": 3, + "usetype": 10, "color": 4, "bagtype": 1, "index": 19, @@ -31,676 +31,12 @@ "decompose_deplete": [] }, { - "id": "30002", - "name": { - "key": "item_item_name_2", - "text": "奥术石" - }, - "usetype": 3, - "color": 4, - "bagtype": 1, - "index": 20, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 108 - ], - "use_skip": 108, - "upper_limit": 999, - "img": "wp_icon_10020", - "intr": { - "key": "item_item_intr_2", - "text": "可以用于奥术阵营招募英雄" - }, - "sale": [], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "30003", - "name": { - "key": "item_item_name_3", - "text": "科技石" - }, - "usetype": 3, - "color": 4, - "bagtype": 1, - "index": 21, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 108 - ], - "use_skip": 108, - "upper_limit": 999, - "img": "wp_icon_10021", - "intr": { - "key": "item_item_intr_3", - "text": "可以用于科技阵营招募英雄" - }, - "sale": [], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "30004", - "name": { - "key": "item_item_name_4", - "text": "自然石" - }, - "usetype": 3, - "color": 4, - "bagtype": 1, - "index": 22, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 108 - ], - "use_skip": 108, - "upper_limit": 999, - "img": "wp_icon_10022", - "intr": { - "key": "item_item_intr_4", - "text": "可以用于自然阵营招募英雄" - }, - "sale": [], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "30005", - "name": { - "key": "item_item_name_5", - "text": "光耀石" - }, - "usetype": 3, - "color": 4, - "bagtype": 1, - "index": 23, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 108 - ], - "use_skip": 108, - "upper_limit": 999, - "img": "wp_icon_10023", - "intr": { - "key": "item_item_intr_5", - "text": "可以用于光耀阵营招募英雄" - }, - "sale": [], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "50001", - "name": { - "key": "item_item_name_6", - "text": "奥术美食-低级" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50005, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10031", - "intr": { - "key": "item_item_intr_6", - "text": "食用后可以提升奥术系英雄的觉醒等级" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [] - }, - { - "id": "50002", - "name": { - "key": "item_item_name_7", - "text": "科技美食-低级" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50006, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10032", - "intr": { - "key": "item_item_intr_7", - "text": "食用后可以提升科技系英雄的觉醒等级" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [] - }, - { - "id": "50003", - "name": { - "key": "item_item_name_8", - "text": "自然美食-低级" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50007, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10033", - "intr": { - "key": "item_item_intr_8", - "text": "食用后可以提升自然系英雄的觉醒等级" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [] - }, - { - "id": "50004", - "name": { - "key": "item_item_name_9", - "text": "光耀美食-低级" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50008, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10034", - "intr": { - "key": "item_item_intr_9", - "text": "食用后可以提升光耀系英雄的觉醒等级" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [] - }, - { - "id": "50005", - "name": { - "key": "item_item_name_10", - "text": "奥术美食-中级" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50009, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10031", - "intr": { - "key": "item_item_intr_10", - "text": "食用后可以提升奥术系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50001", - "n": 3 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "50006", - "name": { - "key": "item_item_name_11", - "text": "科技美食-中级" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50010, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10032", - "intr": { - "key": "item_item_intr_11", - "text": "食用后可以提升科技系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50002", - "n": 3 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "50007", - "name": { - "key": "item_item_name_12", - "text": "自然美食-中级" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50011, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10033", - "intr": { - "key": "item_item_intr_12", - "text": "食用后可以提升自然系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50003", - "n": 3 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "50008", - "name": { - "key": "item_item_name_13", - "text": "光耀美食-中级" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 50012, - "synthetize_num": 5, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10034", - "intr": { - "key": "item_item_intr_13", - "text": "食用后可以提升光耀系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50004", - "n": 3 - } - ], - "synthetize_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "50009", - "name": { - "key": "item_item_name_14", - "text": "奥术美食-高级" - }, - "usetype": 8, - "color": 4, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10031", - "intr": { - "key": "item_item_intr_14", - "text": "食用后可以提升奥术系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50005", - "n": 3 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "50010", - "name": { - "key": "item_item_name_15", - "text": "科技美食-高级" - }, - "usetype": 8, - "color": 4, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10032", - "intr": { - "key": "item_item_intr_15", - "text": "食用后可以提升科技系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50006", - "n": 3 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "50011", - "name": { - "key": "item_item_name_16", - "text": "自然美食-高级" - }, - "usetype": 8, - "color": 4, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10033", - "intr": { - "key": "item_item_intr_16", - "text": "食用后可以提升自然系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50007", - "n": 3 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "50012", - "name": { - "key": "item_item_name_17", - "text": "光耀美食-高级" - }, - "usetype": 8, - "color": 4, - "bagtype": 1, - "index": 18, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 109 - ], - "use_skip": 109, - "upper_limit": -1, - "img": "wp_icon_10034", - "intr": { - "key": "item_item_intr_17", - "text": "食用后可以提升光耀系英雄的觉醒等级" - }, - "sale": [ - { - "a": "item", - "t": "50008", - "n": 3 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ] - }, - { - "id": "60001", + "id": "17010001", "name": { "key": "item_item_name_18", "text": "5星装备自选箱" }, - "usetype": 4, + "usetype": 17, "color": 5, "bagtype": 1, "index": 18, @@ -726,12 +62,12 @@ "decompose_deplete": [] }, { - "id": "60002", + "id": "17020001", "name": { "key": "item_item_name_19", "text": "5星装备随机箱" }, - "usetype": 5, + "usetype": 17, "color": 5, "bagtype": 1, "index": 18, @@ -757,12 +93,12 @@ "decompose_deplete": [] }, { - "id": "60003", + "id": "17030001", "name": { "key": "item_item_name_20", "text": "5星套装宝箱" }, - "usetype": 6, + "usetype": 17, "color": 5, "bagtype": 1, "index": 18, @@ -788,123 +124,12 @@ "decompose_deplete": [] }, { - "id": "90001", - "name": { - "key": "item_item_name_21", - "text": "阿宝星象点" - }, - "usetype": 3, - "color": 4, - "bagtype": 1, - "index": 99, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 155 - ], - "use_skip": 155, - "upper_limit": 999, - "img": "action_11001", - "intr": { - "key": "item_item_intr_21", - "text": "阿宝天赋点" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "90002", - "name": { - "key": "item_item_name_22", - "text": "波比星象点" - }, - "usetype": 3, - "color": 4, - "bagtype": 1, - "index": 99, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 155 - ], - "use_skip": 155, - "upper_limit": 999, - "img": "action_11003", - "intr": { - "key": "item_item_intr_22", - "text": "波比天赋点" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "90003", - "name": { - "key": "item_item_name_23", - "text": "小伊星象点" - }, - "usetype": 3, - "color": 4, - "bagtype": 1, - "index": 99, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "effect_ui_wuping_1", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 155 - ], - "use_skip": 155, - "upper_limit": 999, - "img": "action_44005", - "intr": { - "key": "item_item_intr_23", - "text": "小伊天赋点" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "40001", + "id": "19001001", "name": { "key": "item_item_name_24", "text": "攻势附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -936,12 +161,12 @@ "decompose_deplete": [] }, { - "id": "40002", + "id": "19002001", "name": { "key": "item_item_name_25", "text": "逐风附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -973,12 +198,12 @@ "decompose_deplete": [] }, { - "id": "40003", + "id": "19003001", "name": { "key": "item_item_name_26", "text": "寒霜附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1010,12 +235,12 @@ "decompose_deplete": [] }, { - "id": "40004", + "id": "19004001", "name": { "key": "item_item_name_27", "text": "牧神附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1047,12 +272,12 @@ "decompose_deplete": [] }, { - "id": "40005", + "id": "19005001", "name": { "key": "item_item_name_28", "text": "玄武附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1084,12 +309,12 @@ "decompose_deplete": [] }, { - "id": "40006", + "id": "19001002", "name": { "key": "item_item_name_29", "text": "箭神附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1121,12 +346,12 @@ "decompose_deplete": [] }, { - "id": "40007", + "id": "19002002", "name": { "key": "item_item_name_30", "text": "渴血附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1158,12 +383,12 @@ "decompose_deplete": [] }, { - "id": "40008", + "id": "19003002", "name": { "key": "item_item_name_31", "text": "愈合附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1195,12 +420,12 @@ "decompose_deplete": [] }, { - "id": "40009", + "id": "19004002", "name": { "key": "item_item_name_32", "text": "祈愿附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1232,12 +457,12 @@ "decompose_deplete": [] }, { - "id": "40010", + "id": "19005002", "name": { "key": "item_item_name_33", "text": "预言附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1269,12 +494,12 @@ "decompose_deplete": [] }, { - "id": "40011", + "id": "19001003", "name": { "key": "item_item_name_34", "text": "月盾附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1306,12 +531,12 @@ "decompose_deplete": [] }, { - "id": "40012", + "id": "19002003", "name": { "key": "item_item_name_35", "text": "破妄附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1343,12 +568,12 @@ "decompose_deplete": [] }, { - "id": "40013", + "id": "19003003", "name": { "key": "item_item_name_36", "text": "脉冲附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1380,12 +605,12 @@ "decompose_deplete": [] }, { - "id": "40014", + "id": "19004003", "name": { "key": "item_item_name_37", "text": "裁决附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1417,12 +642,12 @@ "decompose_deplete": [] }, { - "id": "40015", + "id": "19005003", "name": { "key": "item_item_name_38", "text": "炼心附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1454,12 +679,12 @@ "decompose_deplete": [] }, { - "id": "40016", + "id": "19001004", "name": { "key": "item_item_name_39", "text": "诅咒附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1491,12 +716,12 @@ "decompose_deplete": [] }, { - "id": "40017", + "id": "19002004", "name": { "key": "item_item_name_40", "text": "守护附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1528,12 +753,12 @@ "decompose_deplete": [] }, { - "id": "40018", + "id": "19003004", "name": { "key": "item_item_name_41", "text": "御免附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1565,12 +790,12 @@ "decompose_deplete": [] }, { - "id": "40019", + "id": "19004004", "name": { "key": "item_item_name_42", "text": "庇佑附魔石" }, - "usetype": 2, + "usetype": 19, "color": 2, "bagtype": 1, "index": 18, @@ -1602,12 +827,12 @@ "decompose_deplete": [] }, { - "id": "100001", + "id": "18000001", "name": { "key": "item_item_name_43", "text": "维京远征挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1633,12 +858,12 @@ "decompose_deplete": [] }, { - "id": "100002", + "id": "18000002", "name": { "key": "item_item_name_44", "text": "狩猎挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1664,12 +889,12 @@ "decompose_deplete": [] }, { - "id": "100003", + "id": "18000003", "name": { "key": "item_item_name_45", "text": "秘境挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1695,12 +920,12 @@ "decompose_deplete": [] }, { - "id": "100004", + "id": "18000004", "name": { "key": "item_item_name_46", "text": "竞技场挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1726,12 +951,12 @@ "decompose_deplete": [] }, { - "id": "100005", + "id": "18000005", "name": { "key": "item_item_name_47", "text": "阵营挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1757,12 +982,12 @@ "decompose_deplete": [] }, { - "id": "100006", + "id": "18000006", "name": { "key": "item_item_name_48", "text": "公会挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1788,12 +1013,12 @@ "decompose_deplete": [] }, { - "id": "100100", + "id": "18000007", "name": { "key": "item_item_name_49", "text": "副本挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1819,12 +1044,12 @@ "decompose_deplete": [] }, { - "id": "100101", + "id": "18000008", "name": { "key": "item_item_name_50", "text": "副本挑战券" }, - "usetype": 10, + "usetype": 18, "color": 2, "bagtype": 0, "index": 1, @@ -1850,86 +1075,12 @@ "decompose_deplete": [] }, { - "id": "110001", - "name": { - "key": "item_item_name_51", - "text": "木材" - }, - "usetype": 3, - "color": 1, - "bagtype": 0, - "index": 12, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 140 - ], - "use_skip": 140, - "upper_limit": 999, - "img": "wp_icon_10012", - "intr": { - "key": "item_item_intr_51", - "text": "散发着香气的木材,可以用来烹饪" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "110002", - "name": { - "key": "item_item_name_52", - "text": "菜谱" - }, - "usetype": 3, - "color": 1, - "bagtype": 0, - "index": 12, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 140 - ], - "use_skip": 140, - "upper_limit": 999, - "img": "wp_icon_10009", - "intr": { - "key": "item_item_intr_52", - "text": "来自世界各地的菜谱,可以用来提升厨师等级" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "120001", + "id": "13001001", "name": { "key": "item_item_name_53", "text": "葛伦科火花" }, - "usetype": 3, + "usetype": 13, "color": 1, "bagtype": 1, "index": 120001, @@ -1955,12 +1106,12 @@ "decompose_deplete": [] }, { - "id": "120002", + "id": "13001002", "name": { "key": "item_item_name_54", "text": "原始火油" }, - "usetype": 3, + "usetype": 13, "color": 2, "bagtype": 1, "index": 120002, @@ -1986,12 +1137,12 @@ "decompose_deplete": [] }, { - "id": "120003", + "id": "13001003", "name": { "key": "item_item_name_55", "text": "炉心岩浆" }, - "usetype": 3, + "usetype": 13, "color": 3, "bagtype": 1, "index": 120003, @@ -2017,12 +1168,12 @@ "decompose_deplete": [] }, { - "id": "120004", + "id": "13002001", "name": { "key": "item_item_name_56", "text": "荒漠枯枝" }, - "usetype": 3, + "usetype": 13, "color": 1, "bagtype": 1, "index": 120004, @@ -2048,12 +1199,12 @@ "decompose_deplete": [] }, { - "id": "120005", + "id": "13002002", "name": { "key": "item_item_name_57", "text": "洛基圆木" }, - "usetype": 3, + "usetype": 13, "color": 2, "bagtype": 1, "index": 120005, @@ -2079,12 +1230,12 @@ "decompose_deplete": [] }, { - "id": "120006", + "id": "13002003", "name": { "key": "item_item_name_58", "text": "恶魔藤蔓" }, - "usetype": 3, + "usetype": 13, "color": 3, "bagtype": 1, "index": 120006, @@ -2110,12 +1261,12 @@ "decompose_deplete": [] }, { - "id": "120007", + "id": "13003001", "name": { "key": "item_item_name_59", "text": "凛冬雪花" }, - "usetype": 3, + "usetype": 13, "color": 1, "bagtype": 1, "index": 120007, @@ -2141,12 +1292,12 @@ "decompose_deplete": [] }, { - "id": "120008", + "id": "13003002", "name": { "key": "item_item_name_60", "text": "北极冰砖" }, - "usetype": 3, + "usetype": 13, "color": 2, "bagtype": 1, "index": 120008, @@ -2172,12 +1323,12 @@ "decompose_deplete": [] }, { - "id": "120009", + "id": "13003003", "name": { "key": "item_item_name_61", "text": "龙之冰晶" }, - "usetype": 3, + "usetype": 13, "color": 3, "bagtype": 1, "index": 120009, @@ -2203,12 +1354,12 @@ "decompose_deplete": [] }, { - "id": "120101", + "id": "13000001", "name": { "key": "item_item_name_62", "text": "精炼石" }, - "usetype": 3, + "usetype": 13, "color": 4, "bagtype": 1, "index": 120101, @@ -2234,12 +1385,12 @@ "decompose_deplete": [] }, { - "id": "120102", + "id": "13000002", "name": { "key": "item_item_name_63", "text": "太阳石" }, - "usetype": 3, + "usetype": 13, "color": 4, "bagtype": 1, "index": 120102, @@ -2265,12 +1416,12 @@ "decompose_deplete": [] }, { - "id": "120103", + "id": "13000003", "name": { "key": "item_item_name_64", "text": "熔岩石" }, - "usetype": 3, + "usetype": 13, "color": 3, "bagtype": 1, "index": 120103, @@ -2296,12 +1447,12 @@ "decompose_deplete": [] }, { - "id": "120104", + "id": "13000004", "name": { "key": "item_item_name_65", "text": "木炭" }, - "usetype": 3, + "usetype": 13, "color": 3, "bagtype": 1, "index": 120104, @@ -2327,12 +1478,12 @@ "decompose_deplete": [] }, { - "id": "513001", + "id": "11013001", "name": { "key": "item_item_name_66", "text": "闪闪星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2364,12 +1515,12 @@ "decompose_deplete": [] }, { - "id": "513002", + "id": "11013002", "name": { "key": "item_item_name_67", "text": "食人鱼先生星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2401,12 +1552,12 @@ "decompose_deplete": [] }, { - "id": "513003", + "id": "11013003", "name": { "key": "item_item_name_68", "text": "啊啊星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2438,12 +1589,12 @@ "decompose_deplete": [] }, { - "id": "513004", + "id": "11013004", "name": { "key": "item_item_name_69", "text": "法夸德勋爵星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2475,12 +1626,12 @@ "decompose_deplete": [] }, { - "id": "513005", + "id": "11013005", "name": { "key": "item_item_name_70", "text": "大大星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2512,12 +1663,12 @@ "decompose_deplete": [] }, { - "id": "514001", + "id": "11014001", "name": { "key": "item_item_name_71", "text": "史图依克星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2549,12 +1700,12 @@ "decompose_deplete": [] }, { - "id": "514002", + "id": "11014002", "name": { "key": "item_item_name_72", "text": "大龙星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2586,12 +1737,12 @@ "decompose_deplete": [] }, { - "id": "514003", + "id": "11014003", "name": { "key": "item_item_name_73", "text": "亚丝翠星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2623,12 +1774,12 @@ "decompose_deplete": [] }, { - "id": "514004", + "id": "11014004", "name": { "key": "item_item_name_74", "text": "克莱尔·努涅斯星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2660,12 +1811,12 @@ "decompose_deplete": [] }, { - "id": "514005", + "id": "11014005", "name": { "key": "item_item_name_75", "text": "鹤大师星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2697,12 +1848,12 @@ "decompose_deplete": [] }, { - "id": "514006", + "id": "11014006", "name": { "key": "item_item_name_76", "text": "布兰奇星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2734,12 +1885,12 @@ "decompose_deplete": [] }, { - "id": "514007", + "id": "11014007", "name": { "key": "item_item_name_77", "text": "格里斯特王子星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2771,12 +1922,12 @@ "decompose_deplete": [] }, { - "id": "515001", + "id": "11015001", "name": { "key": "item_item_name_78", "text": "吉姆·莱克星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2808,12 +1959,12 @@ "decompose_deplete": [] }, { - "id": "515002", + "id": "11015002", "name": { "key": "item_item_name_79", "text": "船长星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2845,12 +1996,12 @@ "decompose_deplete": [] }, { - "id": "515003", + "id": "11015003", "name": { "key": "item_item_name_80", "text": "希沙窦斯星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2882,12 +2033,12 @@ "decompose_deplete": [] }, { - "id": "515004", + "id": "11015004", "name": { "key": "item_item_name_81", "text": "小欧星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2919,12 +2070,12 @@ "decompose_deplete": [] }, { - "id": "523001", + "id": "11023001", "name": { "key": "item_item_name_82", "text": "斯梅克船长星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2956,12 +2107,12 @@ "decompose_deplete": [] }, { - "id": "523002", + "id": "11023002", "name": { "key": "item_item_name_83", "text": "警卫队长星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -2993,12 +2144,12 @@ "decompose_deplete": [] }, { - "id": "523003", + "id": "11023003", "name": { "key": "item_item_name_84", "text": "泰德·邓普顿星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3030,12 +2181,12 @@ "decompose_deplete": [] }, { - "id": "523004", + "id": "11023004", "name": { "key": "item_item_name_85", "text": "吉姆·普雷斯科特星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3067,12 +2218,12 @@ "decompose_deplete": [] }, { - "id": "524001", + "id": "11024001", "name": { "key": "item_item_name_86", "text": "警长星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3104,12 +2255,12 @@ "decompose_deplete": [] }, { - "id": "524002", + "id": "11024002", "name": { "key": "item_item_name_87", "text": "牙仙星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3141,12 +2292,12 @@ "decompose_deplete": [] }, { - "id": "524003", + "id": "11024003", "name": { "key": "item_item_name_88", "text": "睡神沙人星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3178,12 +2329,12 @@ "decompose_deplete": [] }, { - "id": "524004", + "id": "11024004", "name": { "key": "item_item_name_89", "text": "邦尼兔星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3215,12 +2366,12 @@ "decompose_deplete": [] }, { - "id": "524005", + "id": "11024005", "name": { "key": "item_item_name_90", "text": "金猴星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3252,12 +2403,12 @@ "decompose_deplete": [] }, { - "id": "524006", + "id": "11024006", "name": { "key": "item_item_name_91", "text": "凯尔星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3289,12 +2440,12 @@ "decompose_deplete": [] }, { - "id": "524007", + "id": "11024007", "name": { "key": "item_item_name_92", "text": "小钱星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3326,12 +2477,12 @@ "decompose_deplete": [] }, { - "id": "524008", + "id": "11024008", "name": { "key": "item_item_name_93", "text": "暴芙那特星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3363,12 +2514,12 @@ "decompose_deplete": [] }, { - "id": "524009", + "id": "11024009", "name": { "key": "item_item_name_94", "text": "云朵先生星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3400,12 +2551,12 @@ "decompose_deplete": [] }, { - "id": "525001", + "id": "11025001", "name": { "key": "item_item_name_95", "text": "阿宝星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3437,12 +2588,12 @@ "decompose_deplete": [] }, { - "id": "525002", + "id": "11025002", "name": { "key": "item_item_name_96", "text": "沃尔夫先生星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3474,12 +2625,12 @@ "decompose_deplete": [] }, { - "id": "525003", + "id": "11025003", "name": { "key": "item_item_name_97", "text": "羊仙姑星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3511,12 +2662,12 @@ "decompose_deplete": [] }, { - "id": "525004", + "id": "11025004", "name": { "key": "item_item_name_98", "text": "波比星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3548,12 +2699,12 @@ "decompose_deplete": [] }, { - "id": "533001", + "id": "11033001", "name": { "key": "item_item_name_99", "text": "巫嘎星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3585,12 +2736,12 @@ "decompose_deplete": [] }, { - "id": "533002", + "id": "11033002", "name": { "key": "item_item_name_100", "text": "坦克星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3622,12 +2773,12 @@ "decompose_deplete": [] }, { - "id": "533003", + "id": "11033003", "name": { "key": "item_item_name_101", "text": "胡德先生星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3659,12 +2810,12 @@ "decompose_deplete": [] }, { - "id": "533004", + "id": "11033004", "name": { "key": "item_item_name_102", "text": "普鲁格兰杰星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3696,12 +2847,12 @@ "decompose_deplete": [] }, { - "id": "533005", + "id": "11033005", "name": { "key": "item_item_name_103", "text": "鼻涕粗星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3733,12 +2884,12 @@ "decompose_deplete": [] }, { - "id": "533006", + "id": "11033006", "name": { "key": "item_item_name_104", "text": "珍妮丝·邓普顿星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3770,12 +2921,12 @@ "decompose_deplete": [] }, { - "id": "534001", + "id": "11034001", "name": { "key": "item_item_name_105", "text": "贫嘴驴星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3807,12 +2958,12 @@ "decompose_deplete": [] }, { - "id": "534002", + "id": "11034002", "name": { "key": "item_item_name_106", "text": "蒂姆·邓普顿星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3844,12 +2995,12 @@ "decompose_deplete": [] }, { - "id": "534003", + "id": "11034003", "name": { "key": "item_item_name_107", "text": "圣诞老人星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3881,12 +3032,12 @@ "decompose_deplete": [] }, { - "id": "534004", + "id": "11034004", "name": { "key": "item_item_name_108", "text": "瓜哥星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3918,12 +3069,12 @@ "decompose_deplete": [] }, { - "id": "534005", + "id": "11034005", "name": { "key": "item_item_name_109", "text": "沃尔特·史翠克勒星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3955,12 +3106,12 @@ "decompose_deplete": [] }, { - "id": "534006", + "id": "11034006", "name": { "key": "item_item_name_110", "text": "冰霜杰克星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -3992,12 +3143,12 @@ "decompose_deplete": [] }, { - "id": "534007", + "id": "11034007", "name": { "key": "item_item_name_111", "text": "菲奥娜星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4029,12 +3180,12 @@ "decompose_deplete": [] }, { - "id": "534008", + "id": "11034008", "name": { "key": "item_item_name_112", "text": "悍夫那特星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4066,12 +3217,12 @@ "decompose_deplete": [] }, { - "id": "535001", + "id": "11035001", "name": { "key": "item_item_name_113", "text": "师父星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4103,12 +3254,12 @@ "decompose_deplete": [] }, { - "id": "535002", + "id": "11035002", "name": { "key": "item_item_name_114", "text": "希卡普星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4140,12 +3291,12 @@ "decompose_deplete": [] }, { - "id": "535003", + "id": "11035003", "name": { "key": "item_item_name_115", "text": "漆黑星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4177,12 +3328,12 @@ "decompose_deplete": [] }, { - "id": "535004", + "id": "11035004", "name": { "key": "item_item_name_116", "text": "黛安·福克斯顿星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4214,12 +3365,12 @@ "decompose_deplete": [] }, { - "id": "535005", + "id": "11035005", "name": { "key": "item_item_name_117", "text": "幸运·普雷斯科特星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4251,12 +3402,12 @@ "decompose_deplete": [] }, { - "id": "535006", + "id": "11035006", "name": { "key": "item_item_name_118", "text": "平先生星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4288,12 +3439,12 @@ "decompose_deplete": [] }, { - "id": "543001", + "id": "11043001", "name": { "key": "item_item_name_119", "text": "阿比盖尔·斯通星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4325,12 +3476,12 @@ "decompose_deplete": [] }, { - "id": "543002", + "id": "11043002", "name": { "key": "item_item_name_120", "text": "果酱教授星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4362,12 +3513,12 @@ "decompose_deplete": [] }, { - "id": "543003", + "id": "11043003", "name": { "key": "item_item_name_121", "text": "史蒂夫·帕丘克星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4399,12 +3550,12 @@ "decompose_deplete": [] }, { - "id": "543004", + "id": "11043004", "name": { "key": "item_item_name_122", "text": "姜饼人星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4436,12 +3587,12 @@ "decompose_deplete": [] }, { - "id": "543005", + "id": "11043005", "name": { "key": "item_item_name_123", "text": "瓦希尔指挥官星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4473,12 +3624,12 @@ "decompose_deplete": [] }, { - "id": "543006", + "id": "11043006", "name": { "key": "item_item_name_124", "text": "布里奇特星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4510,12 +3661,12 @@ "decompose_deplete": [] }, { - "id": "543007", + "id": "11043007", "name": { "key": "item_item_name_125", "text": "戈伯星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4547,12 +3698,12 @@ "decompose_deplete": [] }, { - "id": "544001", + "id": "11044001", "name": { "key": "item_item_name_126", "text": "美肚鲨星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4584,12 +3735,12 @@ "decompose_deplete": [] }, { - "id": "544002", + "id": "11044002", "name": { "key": "item_item_name_127", "text": "蛇先生星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4621,12 +3772,12 @@ "decompose_deplete": [] }, { - "id": "544003", + "id": "11044003", "name": { "key": "item_item_name_128", "text": "匹诺曹星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4658,12 +3809,12 @@ "decompose_deplete": [] }, { - "id": "544004", + "id": "11044004", "name": { "key": "item_item_name_129", "text": "骇客蛛星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4695,12 +3846,12 @@ "decompose_deplete": [] }, { - "id": "544006", + "id": "11044006", "name": { "key": "item_item_name_130", "text": "悍娇虎星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4732,12 +3883,12 @@ "decompose_deplete": [] }, { - "id": "545001", + "id": "11045001", "name": { "key": "item_item_name_131", "text": "乌龟大师星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4769,12 +3920,12 @@ "decompose_deplete": [] }, { - "id": "545002", + "id": "11045002", "name": { "key": "item_item_name_132", "text": "梅林星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4806,12 +3957,12 @@ "decompose_deplete": [] }, { - "id": "545003", + "id": "11045003", "name": { "key": "item_item_name_133", "text": "盖星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4843,12 +3994,12 @@ "decompose_deplete": [] }, { - "id": "545004", + "id": "11045004", "name": { "key": "item_item_name_134", "text": "穿靴子的猫星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4880,12 +4031,12 @@ "decompose_deplete": [] }, { - "id": "544005", + "id": "11044005", "name": { "key": "item_item_name_135", "text": "小伊星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4917,12 +4068,12 @@ "decompose_deplete": [] }, { - "id": "515005", + "id": "11015005", "name": { "key": "item_item_name_136", "text": "亚力克斯星象点" }, - "usetype": 3, + "usetype": 11, "color": 4, "bagtype": 1, "index": 99, @@ -4954,12 +4105,12 @@ "decompose_deplete": [] }, { - "id": "500000", + "id": "10000002", "name": { "key": "item_item_name_137", "text": "通用共鸣道具" }, - "usetype": 3, + "usetype": 10, "color": 4, "bagtype": 1, "index": 99, @@ -4991,12 +4142,12 @@ "decompose_deplete": [] }, { - "id": "1000001", + "id": "17030002", "name": { "key": "item_item_name_138", "text": "星象点宝箱" }, - "usetype": 6, + "usetype": 17, "color": 5, "bagtype": 1, "index": 18, @@ -5020,12 +4171,12 @@ "decompose_deplete": [] }, { - "id": "10017", + "id": "10000003", "name": { "key": "item_item_name_139", "text": "体力药剂" }, - "usetype": 11, + "usetype": 10, "color": 3, "bagtype": 1, "index": 7, @@ -5063,12 +4214,12 @@ ] }, { - "id": "600001", + "id": "10000004", "name": { "key": "item_item_name_140", "text": "秘传书" }, - "usetype": 3, + "usetype": 10, "color": 4, "bagtype": 1, "index": 99, @@ -5100,12 +4251,12 @@ "decompose_deplete": [] }, { - "id": "600002", + "id": "10000008", "name": { "key": "item_item_name_141", "text": "英雄初级经验道具" }, - "usetype": 12, + "usetype": 10, "color": 2, "bagtype": 1, "index": 99, @@ -5137,12 +4288,12 @@ "decompose_deplete": [] }, { - "id": "600003", + "id": "10000009", "name": { "key": "item_item_name_142", "text": "英雄中级经验道具" }, - "usetype": 12, + "usetype": 10, "color": 3, "bagtype": 1, "index": 99, @@ -5174,12 +4325,12 @@ "decompose_deplete": [] }, { - "id": "600004", + "id": "10000010", "name": { "key": "item_item_name_143", "text": "英雄高级经验道具" }, - "usetype": 12, + "usetype": 10, "color": 4, "bagtype": 1, "index": 99, @@ -5211,12 +4362,12 @@ "decompose_deplete": [] }, { - "id": "600005", + "id": "10000011", "name": { "key": "item_item_name_144", "text": "英雄初级升星道具" }, - "usetype": 3, + "usetype": 10, "color": 2, "bagtype": 1, "index": 100, @@ -5248,12 +4399,12 @@ "decompose_deplete": [] }, { - "id": "600006", + "id": "10000012", "name": { "key": "item_item_name_145", "text": "英雄中级升星道具" }, - "usetype": 3, + "usetype": 10, "color": 3, "bagtype": 1, "index": 101, @@ -5285,12 +4436,12 @@ "decompose_deplete": [] }, { - "id": "600007", + "id": "10000013", "name": { "key": "item_item_name_146", "text": "英雄高级升星道具" }, - "usetype": 3, + "usetype": 10, "color": 4, "bagtype": 1, "index": 102, @@ -5322,12 +4473,12 @@ "decompose_deplete": [] }, { - "id": "613001", + "id": "12013001", "name": { "key": "item_item_name_147", "text": "闪闪守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5359,12 +4510,12 @@ "decompose_deplete": [] }, { - "id": "613002", + "id": "12013002", "name": { "key": "item_item_name_148", "text": "食人鱼先生守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5396,12 +4547,12 @@ "decompose_deplete": [] }, { - "id": "613003", + "id": "12013003", "name": { "key": "item_item_name_149", "text": "啊啊守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5433,12 +4584,12 @@ "decompose_deplete": [] }, { - "id": "613004", + "id": "12013004", "name": { "key": "item_item_name_150", "text": "法夸德勋爵守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5470,12 +4621,12 @@ "decompose_deplete": [] }, { - "id": "613005", + "id": "12013005", "name": { "key": "item_item_name_151", "text": "大大守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5507,12 +4658,12 @@ "decompose_deplete": [] }, { - "id": "614001", + "id": "12014001", "name": { "key": "item_item_name_152", "text": "史图依克守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5544,12 +4695,12 @@ "decompose_deplete": [] }, { - "id": "614002", + "id": "12014002", "name": { "key": "item_item_name_153", "text": "大龙守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5581,12 +4732,12 @@ "decompose_deplete": [] }, { - "id": "614003", + "id": "12014003", "name": { "key": "item_item_name_154", "text": "亚丝翠守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5618,12 +4769,12 @@ "decompose_deplete": [] }, { - "id": "614004", + "id": "12014004", "name": { "key": "item_item_name_155", "text": "克莱尔·努涅斯守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5655,12 +4806,12 @@ "decompose_deplete": [] }, { - "id": "614005", + "id": "12014005", "name": { "key": "item_item_name_156", "text": "鹤大师守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5692,12 +4843,12 @@ "decompose_deplete": [] }, { - "id": "614006", + "id": "12014006", "name": { "key": "item_item_name_157", "text": "布兰奇守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5729,12 +4880,12 @@ "decompose_deplete": [] }, { - "id": "614007", + "id": "12014007", "name": { "key": "item_item_name_158", "text": "格里斯特王子守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5766,12 +4917,12 @@ "decompose_deplete": [] }, { - "id": "615001", + "id": "12015001", "name": { "key": "item_item_name_159", "text": "吉姆·莱克守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5803,12 +4954,12 @@ "decompose_deplete": [] }, { - "id": "615002", + "id": "12015002", "name": { "key": "item_item_name_160", "text": "船长守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5840,12 +4991,12 @@ "decompose_deplete": [] }, { - "id": "615003", + "id": "12015003", "name": { "key": "item_item_name_161", "text": "希沙窦斯守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5877,12 +5028,12 @@ "decompose_deplete": [] }, { - "id": "615004", + "id": "12015004", "name": { "key": "item_item_name_162", "text": "小欧守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5914,12 +5065,12 @@ "decompose_deplete": [] }, { - "id": "623001", + "id": "12023001", "name": { "key": "item_item_name_163", "text": "斯梅克船长守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5951,12 +5102,12 @@ "decompose_deplete": [] }, { - "id": "623002", + "id": "12023002", "name": { "key": "item_item_name_164", "text": "警卫队长守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -5988,12 +5139,12 @@ "decompose_deplete": [] }, { - "id": "623003", + "id": "12023003", "name": { "key": "item_item_name_165", "text": "黛塔黛恩守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6025,12 +5176,12 @@ "decompose_deplete": [] }, { - "id": "623004", + "id": "12023004", "name": { "key": "item_item_name_166", "text": "吉姆·普雷斯科特守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6062,12 +5213,12 @@ "decompose_deplete": [] }, { - "id": "624001", + "id": "12024001", "name": { "key": "item_item_name_167", "text": "警长守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6099,12 +5250,12 @@ "decompose_deplete": [] }, { - "id": "624002", + "id": "12024002", "name": { "key": "item_item_name_168", "text": "牙仙守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6136,12 +5287,12 @@ "decompose_deplete": [] }, { - "id": "624003", + "id": "12024003", "name": { "key": "item_item_name_169", "text": "睡神沙人守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6173,12 +5324,12 @@ "decompose_deplete": [] }, { - "id": "624004", + "id": "12024004", "name": { "key": "item_item_name_170", "text": "邦尼兔守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6210,12 +5361,12 @@ "decompose_deplete": [] }, { - "id": "624005", + "id": "12024005", "name": { "key": "item_item_name_171", "text": "金猴守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6247,12 +5398,12 @@ "decompose_deplete": [] }, { - "id": "624006", + "id": "12024006", "name": { "key": "item_item_name_172", "text": "凯尔守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6284,12 +5435,12 @@ "decompose_deplete": [] }, { - "id": "624007", + "id": "12024007", "name": { "key": "item_item_name_173", "text": "小钱守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6321,12 +5472,12 @@ "decompose_deplete": [] }, { - "id": "624008", + "id": "12024008", "name": { "key": "item_item_name_174", "text": "暴芙那特守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6358,12 +5509,12 @@ "decompose_deplete": [] }, { - "id": "624009", + "id": "12024009", "name": { "key": "item_item_name_175", "text": "云朵先生守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6395,12 +5546,12 @@ "decompose_deplete": [] }, { - "id": "625001", + "id": "12025001", "name": { "key": "item_item_name_176", "text": "阿宝守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6432,12 +5583,12 @@ "decompose_deplete": [] }, { - "id": "625002", + "id": "12025002", "name": { "key": "item_item_name_177", "text": "沃尔夫先生守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6469,12 +5620,12 @@ "decompose_deplete": [] }, { - "id": "625003", + "id": "12025003", "name": { "key": "item_item_name_178", "text": "羊仙姑守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6506,12 +5657,12 @@ "decompose_deplete": [] }, { - "id": "625004", + "id": "12025004", "name": { "key": "item_item_name_179", "text": "波比守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6543,12 +5694,12 @@ "decompose_deplete": [] }, { - "id": "633001", + "id": "12033001", "name": { "key": "item_item_name_180", "text": "巫嘎守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6580,12 +5731,12 @@ "decompose_deplete": [] }, { - "id": "633002", + "id": "12033002", "name": { "key": "item_item_name_181", "text": "坦克守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6617,12 +5768,12 @@ "decompose_deplete": [] }, { - "id": "633003", + "id": "12033003", "name": { "key": "item_item_name_182", "text": "胡德先生守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6654,12 +5805,12 @@ "decompose_deplete": [] }, { - "id": "633004", + "id": "12033004", "name": { "key": "item_item_name_183", "text": "普鲁格兰杰守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6691,12 +5842,12 @@ "decompose_deplete": [] }, { - "id": "633005", + "id": "12033005", "name": { "key": "item_item_name_184", "text": "鼻涕粗守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6728,12 +5879,12 @@ "decompose_deplete": [] }, { - "id": "633006", + "id": "12033006", "name": { "key": "item_item_name_185", "text": "珍妮丝·邓普顿守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6765,12 +5916,12 @@ "decompose_deplete": [] }, { - "id": "634001", + "id": "12034001", "name": { "key": "item_item_name_186", "text": "贫嘴驴守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6802,12 +5953,12 @@ "decompose_deplete": [] }, { - "id": "634002", + "id": "12034002", "name": { "key": "item_item_name_187", "text": "蒂姆·邓普顿守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6839,12 +5990,12 @@ "decompose_deplete": [] }, { - "id": "634003", + "id": "12034003", "name": { "key": "item_item_name_188", "text": "圣诞老人守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6876,12 +6027,12 @@ "decompose_deplete": [] }, { - "id": "634004", + "id": "12034004", "name": { "key": "item_item_name_189", "text": "瓜哥守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6913,12 +6064,12 @@ "decompose_deplete": [] }, { - "id": "634005", + "id": "12034005", "name": { "key": "item_item_name_190", "text": "沃尔特·史翠克勒守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6950,12 +6101,12 @@ "decompose_deplete": [] }, { - "id": "634006", + "id": "12034006", "name": { "key": "item_item_name_191", "text": "冰霜杰克守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -6987,12 +6138,12 @@ "decompose_deplete": [] }, { - "id": "634007", + "id": "12034007", "name": { "key": "item_item_name_192", "text": "菲奥娜守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7024,12 +6175,12 @@ "decompose_deplete": [] }, { - "id": "634008", + "id": "12034008", "name": { "key": "item_item_name_193", "text": "悍夫那特守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7061,12 +6212,12 @@ "decompose_deplete": [] }, { - "id": "635001", + "id": "12035001", "name": { "key": "item_item_name_194", "text": "师父守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7098,12 +6249,12 @@ "decompose_deplete": [] }, { - "id": "635002", + "id": "12035002", "name": { "key": "item_item_name_195", "text": "希卡普守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7135,12 +6286,12 @@ "decompose_deplete": [] }, { - "id": "635003", + "id": "12035003", "name": { "key": "item_item_name_196", "text": "漆黑守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7172,12 +6323,12 @@ "decompose_deplete": [] }, { - "id": "635004", + "id": "12035004", "name": { "key": "item_item_name_197", "text": "黛安·福克斯顿守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7209,12 +6360,12 @@ "decompose_deplete": [] }, { - "id": "635005", + "id": "12035005", "name": { "key": "item_item_name_198", "text": "幸运·普雷斯科特守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7246,12 +6397,12 @@ "decompose_deplete": [] }, { - "id": "635006", + "id": "12035006", "name": { "key": "item_item_name_199", "text": "平先生守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7283,12 +6434,12 @@ "decompose_deplete": [] }, { - "id": "643001", + "id": "12043001", "name": { "key": "item_item_name_200", "text": "阿比盖尔·斯通守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7320,12 +6471,12 @@ "decompose_deplete": [] }, { - "id": "643002", + "id": "12043002", "name": { "key": "item_item_name_201", "text": "果酱教授守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7357,12 +6508,12 @@ "decompose_deplete": [] }, { - "id": "643003", + "id": "12043003", "name": { "key": "item_item_name_202", "text": "史蒂夫·帕丘克守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7394,12 +6545,12 @@ "decompose_deplete": [] }, { - "id": "643004", + "id": "12043004", "name": { "key": "item_item_name_203", "text": "姜饼人守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7431,12 +6582,12 @@ "decompose_deplete": [] }, { - "id": "643005", + "id": "12043005", "name": { "key": "item_item_name_204", "text": "瓦希尔指挥官守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7468,12 +6619,12 @@ "decompose_deplete": [] }, { - "id": "643006", + "id": "12043006", "name": { "key": "item_item_name_205", "text": "布里奇特守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7505,12 +6656,12 @@ "decompose_deplete": [] }, { - "id": "643007", + "id": "12043007", "name": { "key": "item_item_name_206", "text": "戈伯守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7542,12 +6693,12 @@ "decompose_deplete": [] }, { - "id": "644001", + "id": "12044001", "name": { "key": "item_item_name_207", "text": "美肚鲨守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7579,12 +6730,12 @@ "decompose_deplete": [] }, { - "id": "644002", + "id": "12044002", "name": { "key": "item_item_name_208", "text": "蛇先生守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7616,12 +6767,12 @@ "decompose_deplete": [] }, { - "id": "644003", + "id": "12044003", "name": { "key": "item_item_name_209", "text": "匹诺曹守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7653,12 +6804,12 @@ "decompose_deplete": [] }, { - "id": "644004", + "id": "12044004", "name": { "key": "item_item_name_210", "text": "骇客蛛守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7690,12 +6841,12 @@ "decompose_deplete": [] }, { - "id": "644006", + "id": "12044006", "name": { "key": "item_item_name_211", "text": "悍娇虎守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7727,12 +6878,12 @@ "decompose_deplete": [] }, { - "id": "645001", + "id": "12045001", "name": { "key": "item_item_name_212", "text": "乌龟大师守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7764,12 +6915,12 @@ "decompose_deplete": [] }, { - "id": "645002", + "id": "12045002", "name": { "key": "item_item_name_213", "text": "梅林守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7801,12 +6952,12 @@ "decompose_deplete": [] }, { - "id": "645003", + "id": "12045003", "name": { "key": "item_item_name_214", "text": "盖守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7838,12 +6989,12 @@ "decompose_deplete": [] }, { - "id": "645004", + "id": "12045004", "name": { "key": "item_item_name_215", "text": "穿靴子的猫守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7875,12 +7026,12 @@ "decompose_deplete": [] }, { - "id": "644005", + "id": "12044005", "name": { "key": "item_item_name_216", "text": "小伊守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7912,12 +7063,12 @@ "decompose_deplete": [] }, { - "id": "615005", + "id": "12015005", "name": { "key": "item_item_name_217", "text": "亚力克斯守护之心" }, - "usetype": 3, + "usetype": 12, "color": 2, "bagtype": 0, "index": 99, @@ -7949,12 +7100,12 @@ "decompose_deplete": [] }, { - "id": "132000", + "id": "14020000", "name": { "key": "item_item_name_218", "text": "垃圾菜" }, - "usetype": 13, + "usetype": 14, "color": 1, "bagtype": 1, "index": 99, @@ -7986,12 +7137,12 @@ "decompose_deplete": [] }, { - "id": "132001", + "id": "14020001", "name": { "key": "item_item_name_219", "text": "肉包子" }, - "usetype": 13, + "usetype": 14, "color": 3, "bagtype": 1, "index": 99, @@ -8023,12 +7174,12 @@ "decompose_deplete": [] }, { - "id": "132002", + "id": "14020002", "name": { "key": "item_item_name_220", "text": "土豆炖肉" }, - "usetype": 13, + "usetype": 14, "color": 4, "bagtype": 1, "index": 1, @@ -8060,12 +7211,12 @@ "decompose_deplete": [] }, { - "id": "132003", + "id": "14020003", "name": { "key": "item_item_name_221", "text": "青椒炒肉" }, - "usetype": 13, + "usetype": 14, "color": 4, "bagtype": 1, "index": 2, @@ -8097,12 +7248,12 @@ "decompose_deplete": [] }, { - "id": "132004", + "id": "14020004", "name": { "key": "item_item_name_222", "text": "虎皮青椒" }, - "usetype": 13, + "usetype": 14, "color": 3, "bagtype": 1, "index": 3, @@ -8134,12 +7285,12 @@ "decompose_deplete": [] }, { - "id": "132005", + "id": "14020005", "name": { "key": "item_item_name_223", "text": "面条" }, - "usetype": 13, + "usetype": 14, "color": 3, "bagtype": 1, "index": 4, @@ -8171,12 +7322,12 @@ "decompose_deplete": [] }, { - "id": "132006", + "id": "14020006", "name": { "key": "item_item_name_224", "text": "锅包肉" }, - "usetype": 13, + "usetype": 14, "color": 3, "bagtype": 1, "index": 5, @@ -8208,12 +7359,12 @@ "decompose_deplete": [] }, { - "id": "132007", + "id": "14020007", "name": { "key": "item_item_name_225", "text": "烤肉" }, - "usetype": 13, + "usetype": 14, "color": 3, "bagtype": 1, "index": 6, @@ -8245,12 +7396,12 @@ "decompose_deplete": [] }, { - "id": "132008", + "id": "14020008", "name": { "key": "item_item_name_226", "text": "岩盐烤肉" }, - "usetype": 13, + "usetype": 14, "color": 3, "bagtype": 1, "index": 7, @@ -8282,12 +7433,12 @@ "decompose_deplete": [] }, { - "id": "132009", + "id": "14020009", "name": { "key": "item_item_name_227", "text": "烤土豆" }, - "usetype": 13, + "usetype": 14, "color": 3, "bagtype": 1, "index": 8, @@ -8319,12 +7470,12 @@ "decompose_deplete": [] }, { - "id": "131001", + "id": "14010001", "name": { "key": "item_item_name_228", "text": "土豆" }, - "usetype": 13, + "usetype": 14, "color": 2, "bagtype": 4, "index": 9, @@ -8356,12 +7507,12 @@ "decompose_deplete": [] }, { - "id": "131002", + "id": "14010002", "name": { "key": "item_item_name_229", "text": "粗盐" }, - "usetype": 13, + "usetype": 14, "color": 2, "bagtype": 4, "index": 10, @@ -8393,12 +7544,12 @@ "decompose_deplete": [] }, { - "id": "131003", + "id": "14010003", "name": { "key": "item_item_name_230", "text": "青椒" }, - "usetype": 13, + "usetype": 14, "color": 2, "bagtype": 4, "index": 11, @@ -8430,12 +7581,12 @@ "decompose_deplete": [] }, { - "id": "131004", + "id": "14010004", "name": { "key": "item_item_name_231", "text": "面粉" }, - "usetype": 13, + "usetype": 14, "color": 2, "bagtype": 4, "index": 12, @@ -8467,12 +7618,12 @@ "decompose_deplete": [] }, { - "id": "131005", + "id": "14010005", "name": { "key": "item_item_name_232", "text": "肉" }, - "usetype": 13, + "usetype": 14, "color": 2, "bagtype": 4, "index": 13, @@ -8504,49 +7655,12 @@ "decompose_deplete": [] }, { - "id": "141001", - "name": { - "key": "item_item_name_233", - "text": "流通货币" - }, - "usetype": 14, - "color": 4, - "bagtype": 0, - "index": 99, - "special_type": 200, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 107 - ], - "use_skip": 166, - "upper_limit": -1, - "img": "icon_mcs", - "intr": { - "key": "item_item_intr_233", - "text": "缺少流通货币" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "141002", + "id": "10000005", "name": { "key": "item_item_name_234", "text": "车票" }, - "usetype": 14, + "usetype": 10, "color": 4, "bagtype": 0, "index": 99, @@ -8572,12 +7686,12 @@ "decompose_deplete": [] }, { - "id": "151001", + "id": "10000006", "name": { "key": "item_item_name_235", "text": "提示道具" }, - "usetype": 15, + "usetype": 10, "color": 4, "bagtype": 0, "index": 99, @@ -8609,900 +7723,12 @@ "decompose_deplete": [] }, { - "id": "14010101", - "name": { - "key": "item_item_name_236", - "text": "豪猪刺" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_bx_1", - "intr": { - "key": "item_item_intr_236", - "text": "豪猪刺" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010102", - "name": { - "key": "item_item_name_237", - "text": "火鸡胃" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_ccn_1", - "intr": { - "key": "item_item_intr_237", - "text": "火鸡胃" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010203", - "name": { - "key": "item_item_name_238", - "text": "蟾蜍卵" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_dhd_3", - "intr": { - "key": "item_item_intr_238", - "text": "蟾蜍卵" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010204", - "name": { - "key": "item_item_name_239", - "text": "蚂蟥汁" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_djsx_3", - "intr": { - "key": "item_item_intr_239", - "text": "蚂蟥汁" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010305", - "name": { - "key": "item_item_name_240", - "text": "白鲜" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_fhc_3", - "intr": { - "key": "item_item_intr_240", - "text": "白鲜" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010306", - "name": { - "key": "item_item_name_241", - "text": "荨麻" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_fhd_3", - "intr": { - "key": "item_item_intr_241", - "text": "荨麻" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010407", - "name": { - "key": "item_item_name_242", - "text": "粪石" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_fs_1", - "intr": { - "key": "item_item_intr_242", - "text": "粪石" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010408", - "name": { - "key": "item_item_name_243", - "text": "屎壳郎粉" - }, - "usetype": 8, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_hjw_1", - "intr": { - "key": "item_item_intr_243", - "text": "屎壳郎粉" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020101", - "name": { - "key": "item_item_name_244", - "text": "火蜥蜴皮" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_hlx_3", - "intr": { - "key": "item_item_intr_244", - "text": "火蜥蜴皮" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020102", - "name": { - "key": "item_item_name_245", - "text": "奇美拉牙" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "tf_1005", - "intr": { - "key": "item_item_intr_245", - "text": "奇美拉牙" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020203", - "name": { - "key": "item_item_name_246", - "text": "河豚眼" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_hty_2", - "intr": { - "key": "item_item_intr_246", - "text": "河豚眼" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020204", - "name": { - "key": "item_item_name_247", - "text": "章鱼水" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_hxyp_2", - "intr": { - "key": "item_item_intr_247", - "text": "章鱼水" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020305", - "name": { - "key": "item_item_name_248", - "text": "曼德拉草" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_hzc_1", - "intr": { - "key": "item_item_intr_248", - "text": "曼德拉草" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020306", - "name": { - "key": "item_item_name_249", - "text": "乌头" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_jmg_3", - "intr": { - "key": "item_item_intr_249", - "text": "乌头" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020407", - "name": { - "key": "item_item_name_250", - "text": "月长石" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_mdlc_2", - "intr": { - "key": "item_item_intr_250", - "text": "月长石" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14020408", - "name": { - "key": "item_item_name_251", - "text": "蛇王蛋" - }, - "usetype": 8, - "color": 2, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_mryl_3", - "intr": { - "key": "item_item_intr_251", - "text": "蛇王蛋" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030101", - "name": { - "key": "item_item_name_252", - "text": "火龙血" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_qmly_2", - "intr": { - "key": "item_item_intr_252", - "text": "火龙血" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030102", - "name": { - "key": "item_item_name_253", - "text": "凤凰胆" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_sklf_1", - "intr": { - "key": "item_item_intr_253", - "text": "凤凰胆" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030203", - "name": { - "key": "item_item_name_254", - "text": "独角兽血" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_swd_2", - "intr": { - "key": "item_item_intr_254", - "text": "独角兽血" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030204", - "name": { - "key": "item_item_name_255", - "text": "美人鱼泪" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_wut_2", - "intr": { - "key": "item_item_intr_255", - "text": "美人鱼泪" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030305", - "name": { - "key": "item_item_name_256", - "text": "接骨木" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_xm_1", - "intr": { - "key": "item_item_intr_256", - "text": "接骨木" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030306", - "name": { - "key": "item_item_name_257", - "text": "复活草" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_xzzs_3", - "intr": { - "key": "item_item_intr_257", - "text": "复活草" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030407", - "name": { - "key": "item_item_name_258", - "text": "贤者之石" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_ycs_2", - "intr": { - "key": "item_item_intr_258", - "text": "贤者之石" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14030408", - "name": { - "key": "item_item_name_259", - "text": "大还丹" - }, - "usetype": 8, - "color": 3, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 0, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 168 - ], - "use_skip": 168, - "upper_limit": 999, - "img": "my_zys_2", - "intr": { - "key": "item_item_intr_259", - "text": "大还丹" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, - { - "id": "14010111", + "id": "15000101", "name": { "key": "item_item_name_260", "text": "热火药剂" }, - "usetype": 8, + "usetype": 15, "color": 1, "bagtype": 1, "index": 1, @@ -9534,12 +7760,12 @@ "decompose_deplete": [] }, { - "id": "14010212", + "id": "15000102", "name": { "key": "item_item_name_261", "text": "冷水药剂" }, - "usetype": 8, + "usetype": 15, "color": 1, "bagtype": 1, "index": 1, @@ -9571,12 +7797,12 @@ "decompose_deplete": [] }, { - "id": "14010313", + "id": "15000103", "name": { "key": "item_item_name_262", "text": "古木药剂" }, - "usetype": 8, + "usetype": 15, "color": 1, "bagtype": 1, "index": 1, @@ -9608,12 +7834,12 @@ "decompose_deplete": [] }, { - "id": "14010414", + "id": "15000104", "name": { "key": "item_item_name_263", "text": "微尘药剂" }, - "usetype": 8, + "usetype": 15, "color": 1, "bagtype": 1, "index": 1, @@ -9645,12 +7871,12 @@ "decompose_deplete": [] }, { - "id": "14020111", + "id": "15000201", "name": { "key": "item_item_name_264", "text": "烈焰精华" }, - "usetype": 8, + "usetype": 15, "color": 2, "bagtype": 1, "index": 1, @@ -9682,12 +7908,12 @@ "decompose_deplete": [] }, { - "id": "14020212", + "id": "15000202", "name": { "key": "item_item_name_265", "text": "凝露精华" }, - "usetype": 8, + "usetype": 15, "color": 2, "bagtype": 1, "index": 1, @@ -9719,12 +7945,12 @@ "decompose_deplete": [] }, { - "id": "14020313", + "id": "15000203", "name": { "key": "item_item_name_266", "text": "荆棘精华" }, - "usetype": 8, + "usetype": 15, "color": 2, "bagtype": 1, "index": 1, @@ -9756,12 +7982,12 @@ "decompose_deplete": [] }, { - "id": "14020414", + "id": "15000204", "name": { "key": "item_item_name_267", "text": "曙光精华" }, - "usetype": 8, + "usetype": 15, "color": 2, "bagtype": 1, "index": 1, @@ -9793,12 +8019,12 @@ "decompose_deplete": [] }, { - "id": "14030111", + "id": "15000301", "name": { "key": "item_item_name_268", "text": "爆炸神水" }, - "usetype": 8, + "usetype": 15, "color": 3, "bagtype": 1, "index": 1, @@ -9830,12 +8056,12 @@ "decompose_deplete": [] }, { - "id": "14030212", + "id": "15000302", "name": { "key": "item_item_name_269", "text": "深渊神水" }, - "usetype": 8, + "usetype": 15, "color": 3, "bagtype": 1, "index": 1, @@ -9867,12 +8093,12 @@ "decompose_deplete": [] }, { - "id": "14030313", + "id": "15000303", "name": { "key": "item_item_name_270", "text": "魔森神水" }, - "usetype": 8, + "usetype": 15, "color": 3, "bagtype": 1, "index": 1, @@ -9904,12 +8130,12 @@ "decompose_deplete": [] }, { - "id": "14030414", + "id": "15000304", "name": { "key": "item_item_name_271", "text": "秘境神水" }, - "usetype": 8, + "usetype": 15, "color": 3, "bagtype": 1, "index": 1, @@ -9941,12 +8167,12 @@ "decompose_deplete": [] }, { - "id": "15010101", + "id": "10000007", "name": { "key": "item_item_name_272", "text": "活跃度" }, - "usetype": 15, + "usetype": 10, "color": 3, "bagtype": 0, "index": 1, @@ -9971,43 +8197,6 @@ "synthetize_deplete": [], "decompose_deplete": [] }, - { - "id": "9999999", - "name": { - "key": "item_item_name_273", - "text": "时限道具(测试)" - }, - "usetype": 3, - "color": 1, - "bagtype": 1, - "index": 1, - "special_type": 0, - "time": 2, - "reddottype": 0, - "effects": "", - "modelName": "", - "box_id": 0, - "synthetize_num": 0, - "access": [ - 1001 - ], - "use_skip": 1001, - "upper_limit": -1, - "img": "tj_icon_flower", - "intr": { - "key": "item_item_intr_273", - "text": "测试时限道具,2分钟消失" - }, - "sale": [ - { - "a": "attr", - "t": "gold", - "n": 1000 - } - ], - "synthetize_deplete": [], - "decompose_deplete": [] - }, { "id": "16001001", "name": { diff --git a/bin/json/game_lottery.json b/bin/json/game_lottery.json index 282208692..4d12f53d8 100644 --- a/bin/json/game_lottery.json +++ b/bin/json/game_lottery.json @@ -10,7 +10,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "132000", + "t": "14020000", "n": 1 }, "itemdes": "体力", @@ -34,7 +34,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "132001", + "t": "14020001", "n": 1 }, "itemdes": "精力", @@ -58,7 +58,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "132002", + "t": "14020002", "n": 1 }, "itemdes": "凤文君", @@ -82,7 +82,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "132003", + "t": "14020003", "n": 1 }, "itemdes": "月清", @@ -106,7 +106,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "132004", + "t": "14020004", "n": 1 }, "itemdes": "曹漫野", @@ -130,7 +130,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "132005", + "t": "14020005", "n": 1 }, "itemdes": "璐璐", @@ -154,7 +154,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "132006", + "t": "14020006", "n": 1 }, "itemdes": "柳名传", @@ -178,7 +178,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "132007", + "t": "14020007", "n": 1 }, "itemdes": "薛浅浅", @@ -202,7 +202,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "132008", + "t": "14020008", "n": 1 }, "itemdes": "白素素", @@ -226,7 +226,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "132009", + "t": "14020009", "n": 1 }, "itemdes": "晴紫", @@ -250,7 +250,7 @@ "groupnum": 2, "itemid": { "a": "item", - "t": "131001", + "t": "14010001", "n": 1 }, "itemdes": "测试道具1", @@ -274,7 +274,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "131002", + "t": "14010002", "n": 1 }, "itemdes": "测试道具2", @@ -298,7 +298,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "131003", + "t": "14010003", "n": 1 }, "itemdes": "测试道具3", @@ -322,7 +322,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "131004", + "t": "14010004", "n": 1 }, "itemdes": "测试道具4", @@ -346,7 +346,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "131005", + "t": "14010005", "n": 1 }, "itemdes": "测试道具5", @@ -658,7 +658,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "131003", + "t": "14010003", "n": 1 }, "itemdes": "测试道具18", @@ -682,7 +682,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "131004", + "t": "14010004", "n": 1 }, "itemdes": "测试道具19", @@ -706,7 +706,7 @@ "groupnum": 0, "itemid": { "a": "item", - "t": "131005", + "t": "14010005", "n": 1 }, "itemdes": "测试道具20", @@ -730,7 +730,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14010111", + "t": "15000101", "n": 1 }, "itemdes": "热火药剂", @@ -754,7 +754,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14020111", + "t": "15000201", "n": 1 }, "itemdes": "烈焰精华", @@ -778,7 +778,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14030111", + "t": "15000301", "n": 1 }, "itemdes": "爆炸神水", @@ -802,7 +802,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14010212", + "t": "15000102", "n": 1 }, "itemdes": "冷水药剂", @@ -826,7 +826,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14020212", + "t": "15000202", "n": 1 }, "itemdes": "凝露精华", @@ -850,7 +850,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14030212", + "t": "15000302", "n": 1 }, "itemdes": "深渊神水", @@ -874,7 +874,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14010313", + "t": "15000103", "n": 1 }, "itemdes": "古木药剂", @@ -898,7 +898,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14020313", + "t": "15000203", "n": 1 }, "itemdes": "荆棘精华", @@ -922,7 +922,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14030313", + "t": "15000303", "n": 1 }, "itemdes": "魔森神水", @@ -946,7 +946,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14010414", + "t": "15000104", "n": 1 }, "itemdes": "微尘药剂", @@ -970,7 +970,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14020414", + "t": "15000204", "n": 1 }, "itemdes": "曙光精华", @@ -994,7 +994,7 @@ "groupnum": 1, "itemid": { "a": "item", - "t": "14030414", + "t": "15000304", "n": 1 }, "itemdes": "秘境神水", diff --git a/bin/json/game_mainstage.json b/bin/json/game_mainstage.json index dc4e990a6..1592e9d34 100644 --- a/bin/json/game_mainstage.json +++ b/bin/json/game_mainstage.json @@ -133,7 +133,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -221,7 +221,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -309,7 +309,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -397,7 +397,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -485,7 +485,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -573,7 +573,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -661,7 +661,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -749,7 +749,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -838,7 +838,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -927,7 +927,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1016,7 +1016,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1105,7 +1105,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1193,7 +1193,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1281,7 +1281,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1370,7 +1370,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1459,7 +1459,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1548,7 +1548,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1637,7 +1637,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1725,7 +1725,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1813,7 +1813,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1902,7 +1902,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -1991,7 +1991,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { @@ -2080,7 +2080,7 @@ }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 }, { diff --git a/bin/json/game_newsmithy.json b/bin/json/game_newsmithy.json index 3d9b74cfc..0e819105c 100644 --- a/bin/json/game_newsmithy.json +++ b/bin/json/game_newsmithy.json @@ -21,24 +21,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 5 } ], "temperature_cos": 50, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -73,24 +73,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 10 } ], "temperature_cos": 55, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -126,24 +126,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 15 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -180,24 +180,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 20 } ], "temperature_cos": 55, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -233,24 +233,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 25 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -287,24 +287,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 30 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -340,24 +340,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 35 } ], "temperature_cos": 70, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -394,24 +394,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 40 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -447,24 +447,24 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 45 } ], "temperature_cos": 75, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -501,29 +501,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 50 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 5 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -559,29 +559,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 55 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 10 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -616,29 +616,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 60 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 15 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -673,29 +673,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 65 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 20 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -730,29 +730,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 70 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 25 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -787,29 +787,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 75 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 30 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -844,29 +844,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 80 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 35 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -901,29 +901,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 85 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 40 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -958,29 +958,29 @@ "basic_cos": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 90 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 45 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1015,24 +1015,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 5 } ], "temperature_cos": 50, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1067,24 +1067,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 10 } ], "temperature_cos": 55, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1120,24 +1120,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 15 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1174,24 +1174,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 20 } ], "temperature_cos": 55, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1227,24 +1227,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 25 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1281,24 +1281,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 30 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1334,24 +1334,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 35 } ], "temperature_cos": 70, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1388,24 +1388,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 40 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1441,24 +1441,24 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 45 } ], "temperature_cos": 75, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1495,29 +1495,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 50 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 5 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1553,29 +1553,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 55 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 10 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1610,29 +1610,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 60 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 15 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1667,29 +1667,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 65 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 20 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1724,29 +1724,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 70 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 25 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1781,29 +1781,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 75 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 30 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1838,29 +1838,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 80 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 35 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1895,29 +1895,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 85 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 40 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -1952,29 +1952,29 @@ "basic_cos": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 90 }, { "a": "item", - "t": "120005", + "t": "13002002", "n": 45 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2009,24 +2009,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 5 } ], "temperature_cos": 50, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2061,24 +2061,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 10 } ], "temperature_cos": 55, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2114,24 +2114,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 15 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2168,24 +2168,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 20 } ], "temperature_cos": 55, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2221,24 +2221,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 25 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2275,24 +2275,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 30 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2328,24 +2328,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 35 } ], "temperature_cos": 70, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2382,24 +2382,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 40 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2435,24 +2435,24 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 45 } ], "temperature_cos": 75, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2489,29 +2489,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 50 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 5 } ], "temperature_cos": 65, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2547,29 +2547,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 55 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 10 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2604,29 +2604,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 60 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 15 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2661,29 +2661,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 65 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 20 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2718,29 +2718,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 70 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 25 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2775,29 +2775,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 75 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 30 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2832,29 +2832,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 80 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 35 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2889,29 +2889,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 85 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 40 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -2946,29 +2946,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 90 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 45 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -3003,29 +3003,29 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 95 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 50 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -3060,34 +3060,34 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 100 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 55 }, { "a": "item", - "t": "120009", + "t": "13003003", "n": 5 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -3122,34 +3122,34 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 105 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 60 }, { "a": "item", - "t": "120009", + "t": "13003003", "n": 10 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -3184,34 +3184,34 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 110 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 65 }, { "a": "item", - "t": "120009", + "t": "13003003", "n": 15 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -3246,34 +3246,34 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 115 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 70 }, { "a": "item", - "t": "120009", + "t": "13003003", "n": 20 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -3308,34 +3308,34 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 120 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 75 }, { "a": "item", - "t": "120009", + "t": "13003003", "n": 25 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ @@ -3370,34 +3370,34 @@ "basic_cos": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 125 }, { "a": "item", - "t": "120008", + "t": "13003002", "n": 80 }, { "a": "item", - "t": "120009", + "t": "13003003", "n": 30 } ], "temperature_cos": 60, "refine_cos": { "a": "item", - "t": "120101", + "t": "13000001", "n": 1 }, "customized_cos1": { "a": "item", - "t": "120102", + "t": "13000002", "n": 10 }, "customized_cos2": { "a": "item", - "t": "120102", + "t": "13000002", "n": 40 }, "customized_lv": [ diff --git a/bin/json/game_pagoda.json b/bin/json/game_pagoda.json index eb75d0cc4..58d69f517 100644 --- a/bin/json/game_pagoda.json +++ b/bin/json/game_pagoda.json @@ -3131,7 +3131,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], diff --git a/bin/json/game_pagodataskreward.json b/bin/json/game_pagodataskreward.json index 5b8f17883..dce5ad05e 100644 --- a/bin/json/game_pagodataskreward.json +++ b/bin/json/game_pagodataskreward.json @@ -6,7 +6,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 }, { @@ -33,7 +33,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -50,7 +50,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 }, { @@ -77,7 +77,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -94,7 +94,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -116,7 +116,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -138,7 +138,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -160,7 +160,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -182,7 +182,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -204,7 +204,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -226,7 +226,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -248,7 +248,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -270,7 +270,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -292,7 +292,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -314,7 +314,7 @@ "reward": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { diff --git a/bin/json/game_pandamasjx.json b/bin/json/game_pandamasjx.json index 336af28b8..85ad008bf 100644 --- a/bin/json/game_pandamasjx.json +++ b/bin/json/game_pandamasjx.json @@ -134,7 +134,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -315,7 +315,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -360,7 +360,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -495,7 +495,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -778,7 +778,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -823,7 +823,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1105,7 +1105,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1148,7 +1148,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1191,7 +1191,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -1234,7 +1234,7 @@ "ants": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], diff --git a/bin/json/game_pandamastjjl.json b/bin/json/game_pandamastjjl.json index 2936cac55..061136622 100644 --- a/bin/json/game_pandamastjjl.json +++ b/bin/json/game_pandamastjjl.json @@ -5,7 +5,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -16,7 +16,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -27,7 +27,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -38,7 +38,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -49,7 +49,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -60,7 +60,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -71,7 +71,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -82,7 +82,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -93,7 +93,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -104,7 +104,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -115,7 +115,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -126,7 +126,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -137,7 +137,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -148,7 +148,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -159,7 +159,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] @@ -170,7 +170,7 @@ "item_id": [ { "a": "item", - "t": "100101", + "t": "18000008", "n": 1 } ] diff --git a/bin/json/game_paypackage.json b/bin/json/game_paypackage.json index 4ad15f855..1757bafd7 100644 --- a/bin/json/game_paypackage.json +++ b/bin/json/game_paypackage.json @@ -91,7 +91,7 @@ "item": [ { "a": "item", - "t": "60001", + "t": "17010001", "n": 1 } ] @@ -113,7 +113,7 @@ "item": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 1 } ] @@ -135,7 +135,7 @@ "item": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 1 } ] @@ -157,7 +157,7 @@ "item": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 1 } ] @@ -179,7 +179,7 @@ "item": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 1 } ] @@ -201,7 +201,7 @@ "item": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 1 } ] @@ -223,7 +223,7 @@ "item": [ { "a": "item", - "t": "60003", + "t": "17030001", "n": 1 } ] @@ -245,7 +245,7 @@ "item": [ { "a": "item", - "t": "60003", + "t": "17030001", "n": 1 } ] @@ -267,7 +267,7 @@ "item": [ { "a": "item", - "t": "60003", + "t": "17030001", "n": 1 } ] diff --git a/bin/json/game_potions.json b/bin/json/game_potions.json index ce61e867d..9d365d989 100644 --- a/bin/json/game_potions.json +++ b/bin/json/game_potions.json @@ -67,21 +67,21 @@ "standard_yield": [ { "a": "item", - "t": "14010111", + "t": "15000101", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14010111", + "t": "15000101", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14010111", + "t": "15000101", "n": 5 } ] @@ -154,21 +154,21 @@ "standard_yield": [ { "a": "item", - "t": "14010212", + "t": "15000102", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14010212", + "t": "15000102", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14010212", + "t": "15000102", "n": 5 } ] @@ -241,21 +241,21 @@ "standard_yield": [ { "a": "item", - "t": "14010313", + "t": "15000103", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14010313", + "t": "15000103", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14010313", + "t": "15000103", "n": 5 } ] @@ -328,21 +328,21 @@ "standard_yield": [ { "a": "item", - "t": "14010414", + "t": "15000104", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14010414", + "t": "15000104", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14010414", + "t": "15000104", "n": 5 } ] @@ -415,21 +415,21 @@ "standard_yield": [ { "a": "item", - "t": "14020111", + "t": "15000201", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14020111", + "t": "15000201", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14020111", + "t": "15000201", "n": 5 } ] @@ -502,21 +502,21 @@ "standard_yield": [ { "a": "item", - "t": "14020212", + "t": "15000202", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14020212", + "t": "15000202", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14020212", + "t": "15000202", "n": 5 } ] @@ -589,21 +589,21 @@ "standard_yield": [ { "a": "item", - "t": "14020313", + "t": "15000203", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14020313", + "t": "15000203", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14020313", + "t": "15000203", "n": 5 } ] @@ -676,21 +676,21 @@ "standard_yield": [ { "a": "item", - "t": "14020414", + "t": "15000204", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14020414", + "t": "15000204", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14020414", + "t": "15000204", "n": 5 } ] @@ -763,21 +763,21 @@ "standard_yield": [ { "a": "item", - "t": "14030111", + "t": "15000301", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14030111", + "t": "15000301", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14030111", + "t": "15000301", "n": 5 } ] @@ -850,21 +850,21 @@ "standard_yield": [ { "a": "item", - "t": "14030212", + "t": "15000302", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14030212", + "t": "15000302", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14030212", + "t": "15000302", "n": 5 } ] @@ -937,21 +937,21 @@ "standard_yield": [ { "a": "item", - "t": "14030313", + "t": "15000303", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14030313", + "t": "15000303", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14030313", + "t": "15000303", "n": 5 } ] @@ -1024,21 +1024,21 @@ "standard_yield": [ { "a": "item", - "t": "14030414", + "t": "15000304", "n": 3 } ], "low_yield": [ { "a": "item", - "t": "14030414", + "t": "15000304", "n": 1 } ], "high_yield": [ { "a": "item", - "t": "14030414", + "t": "15000304", "n": 5 } ] diff --git a/bin/json/game_rdtaskcondi.json b/bin/json/game_rdtaskcondi.json index 62b455025..aaf8210e3 100644 --- a/bin/json/game_rdtaskcondi.json +++ b/bin/json/game_rdtaskcondi.json @@ -5,7 +5,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_1", - "text": "" + "text": "测试数据" }, "type": 1, "valid": 0, @@ -22,7 +22,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_2", - "text": "" + "text": "测试数据" }, "type": 1, "valid": 0, @@ -39,7 +39,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_3", - "text": "" + "text": "测试数据" }, "type": 3, "valid": 0, @@ -56,7 +56,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_4", - "text": "" + "text": "测试数据" }, "type": 4, "valid": 0, @@ -73,7 +73,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_5", - "text": "" + "text": "测试数据" }, "type": 5, "valid": 0, @@ -90,7 +90,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_6", - "text": "" + "text": "测试数据" }, "type": 6, "valid": 0, @@ -107,7 +107,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_7", - "text": "" + "text": "测试数据" }, "type": 7, "valid": 0, @@ -124,7 +124,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_8", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -141,7 +141,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_9", - "text": "" + "text": "测试数据" }, "type": 9, "valid": 0, @@ -158,7 +158,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_10", - "text": "" + "text": "测试数据" }, "type": 10, "valid": 0, @@ -175,7 +175,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_11", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -192,7 +192,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_12", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -209,7 +209,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_13", - "text": "" + "text": "测试数据" }, "type": 13, "valid": 0, @@ -243,7 +243,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_15", - "text": "" + "text": "测试数据" }, "type": 15, "valid": 0, @@ -260,7 +260,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_16", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -277,7 +277,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_17", - "text": "" + "text": "测试数据" }, "type": 17, "valid": 0, @@ -294,7 +294,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_18", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -311,7 +311,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_19", - "text": "" + "text": "测试数据" }, "type": 19, "valid": 0, @@ -328,7 +328,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_20", - "text": "" + "text": "测试数据" }, "type": 20, "valid": 0, @@ -345,7 +345,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_21", - "text": "" + "text": "测试数据" }, "type": 21, "valid": 0, @@ -362,7 +362,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_22", - "text": "" + "text": "测试数据" }, "type": 22, "valid": 0, @@ -379,7 +379,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_23", - "text": "" + "text": "测试数据" }, "type": 23, "valid": 0, @@ -396,7 +396,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_24", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -413,7 +413,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_25", - "text": "" + "text": "测试数据" }, "type": 25, "valid": 0, @@ -430,7 +430,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_26", - "text": "" + "text": "测试数据" }, "type": 26, "valid": 0, @@ -447,7 +447,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_27", - "text": "" + "text": "测试数据" }, "type": 27, "valid": 0, @@ -464,7 +464,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_28", - "text": "" + "text": "测试数据" }, "type": 28, "valid": 0, @@ -481,7 +481,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_29", - "text": "" + "text": "测试数据" }, "type": 29, "valid": 0, @@ -498,7 +498,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_30", - "text": "" + "text": "测试数据" }, "type": 30, "valid": 0, @@ -515,7 +515,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_31", - "text": "" + "text": "测试数据" }, "type": 31, "valid": 0, @@ -532,7 +532,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_32", - "text": "" + "text": "测试数据" }, "type": 32, "valid": 0, @@ -549,7 +549,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_33", - "text": "" + "text": "测试数据" }, "type": 33, "valid": 0, @@ -566,7 +566,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_34", - "text": "" + "text": "测试数据" }, "type": 34, "valid": 0, @@ -583,7 +583,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_35", - "text": "" + "text": "测试数据" }, "type": 35, "valid": 0, @@ -600,7 +600,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_36", - "text": "" + "text": "测试数据" }, "type": 36, "valid": 0, @@ -617,7 +617,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_37", - "text": "" + "text": "测试数据" }, "type": 37, "valid": 0, @@ -634,7 +634,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_38", - "text": "" + "text": "测试数据" }, "type": 38, "valid": 0, @@ -651,7 +651,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_39", - "text": "" + "text": "测试数据" }, "type": 39, "valid": 0, @@ -668,7 +668,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_40", - "text": "" + "text": "测试数据" }, "type": 40, "valid": 0, @@ -685,7 +685,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_41", - "text": "" + "text": "测试数据" }, "type": 41, "valid": 0, @@ -702,7 +702,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_42", - "text": "" + "text": "测试数据" }, "type": 42, "valid": 0, @@ -719,7 +719,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_43", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -736,7 +736,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_44", - "text": "" + "text": "测试数据" }, "type": 44, "valid": 0, @@ -753,7 +753,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_45", - "text": "" + "text": "测试数据" }, "type": 45, "valid": 0, @@ -770,7 +770,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_46", - "text": "" + "text": "测试数据" }, "type": 46, "valid": 0, @@ -787,7 +787,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_47", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -804,7 +804,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_48", - "text": "" + "text": "测试数据" }, "type": 48, "valid": 0, @@ -821,7 +821,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_49", - "text": "" + "text": "测试数据" }, "type": 49, "valid": 0, @@ -838,7 +838,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_50", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -855,7 +855,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_51", - "text": "" + "text": "测试数据" }, "type": 51, "valid": 0, @@ -872,7 +872,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_52", - "text": "" + "text": "测试数据" }, "type": 52, "valid": 0, @@ -889,7 +889,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_53", - "text": "" + "text": "测试数据" }, "type": 53, "valid": 0, @@ -906,7 +906,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_54", - "text": "" + "text": "测试数据" }, "type": 54, "valid": 0, @@ -923,7 +923,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_55", - "text": "" + "text": "测试数据" }, "type": 55, "valid": 0, @@ -940,7 +940,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_56", - "text": "" + "text": "测试数据" }, "type": 56, "valid": 0, @@ -957,7 +957,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_57", - "text": "" + "text": "测试数据" }, "type": 57, "valid": 0, @@ -974,7 +974,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_58", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -991,7 +991,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_59", - "text": "" + "text": "测试数据" }, "type": 59, "valid": 0, @@ -1008,7 +1008,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_60", - "text": "" + "text": "测试数据" }, "type": 60, "valid": 0, @@ -1042,7 +1042,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_62", - "text": "" + "text": "测试数据" }, "type": 62, "valid": 0, @@ -1059,7 +1059,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_63", - "text": "" + "text": "测试数据" }, "type": 63, "valid": 0, @@ -1076,7 +1076,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_64", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -1093,7 +1093,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_65", - "text": "" + "text": "测试数据" }, "type": 65, "valid": 0, @@ -1110,7 +1110,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_66", - "text": "" + "text": "测试数据" }, "type": 66, "valid": 0, @@ -1127,7 +1127,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_67", - "text": "" + "text": "测试数据" }, "type": 67, "valid": 0, @@ -1144,7 +1144,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_68", - "text": "" + "text": "测试数据" }, "type": 68, "valid": 0, @@ -1161,7 +1161,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_69", - "text": "" + "text": "测试数据" }, "type": 69, "valid": 0, @@ -1178,7 +1178,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_70", - "text": "" + "text": "测试数据" }, "type": 1, "valid": 0, @@ -1195,7 +1195,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_71", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1212,7 +1212,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_72", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -1229,7 +1229,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_73", - "text": "" + "text": "测试数据" }, "type": 72, "valid": 0, @@ -1263,7 +1263,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_75", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1280,7 +1280,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_76", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1297,7 +1297,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_77", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1314,7 +1314,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_78", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1331,7 +1331,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_79", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1348,7 +1348,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_80", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1365,7 +1365,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_81", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1382,7 +1382,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_82", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1399,7 +1399,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_83", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1416,7 +1416,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_84", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1433,7 +1433,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_85", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1450,7 +1450,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_86", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1467,7 +1467,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_87", - "text": "" + "text": "测试数据" }, "type": 109, "valid": 0, @@ -1484,7 +1484,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_88", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -1501,7 +1501,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_89", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1518,7 +1518,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_90", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1535,7 +1535,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_91", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1552,7 +1552,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_92", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1569,7 +1569,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_93", - "text": "" + "text": "测试数据" }, "type": 70, "valid": 0, @@ -1586,7 +1586,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_94", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1603,7 +1603,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_95", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1620,7 +1620,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_96", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1637,7 +1637,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_97", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1654,7 +1654,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_98", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1671,7 +1671,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_99", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1688,7 +1688,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_100", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1705,7 +1705,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_101", - "text": "" + "text": "测试数据" }, "type": 140, "valid": 0, @@ -1756,7 +1756,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_104", - "text": "" + "text": "测试数据" }, "type": 61, "valid": 0, @@ -1773,7 +1773,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_105", - "text": "" + "text": "测试数据" }, "type": 61, "valid": 0, @@ -1892,7 +1892,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_112", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -1909,7 +1909,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_113", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -1926,7 +1926,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_114", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -1943,7 +1943,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_115", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -1960,7 +1960,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_116", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -1977,7 +1977,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_117", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -1994,7 +1994,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_118", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -2011,7 +2011,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_119", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -2028,7 +2028,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_120", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -2045,7 +2045,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_121", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -2062,7 +2062,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_122", - "text": "" + "text": "测试数据" }, "type": 7, "valid": 0, @@ -2079,7 +2079,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_123", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2096,7 +2096,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_124", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2113,7 +2113,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_125", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2130,7 +2130,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_126", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2147,7 +2147,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_127", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2164,7 +2164,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_128", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2181,7 +2181,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_129", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2198,7 +2198,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_130", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2215,7 +2215,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_131", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2232,7 +2232,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_132", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2249,7 +2249,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_133", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -2266,7 +2266,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_134", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2283,7 +2283,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_135", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2300,7 +2300,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_136", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2317,7 +2317,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_137", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2334,7 +2334,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_138", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2351,7 +2351,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_139", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2368,7 +2368,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_140", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2385,7 +2385,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_141", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2402,7 +2402,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_142", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2419,7 +2419,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_143", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2436,7 +2436,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_144", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2453,7 +2453,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_145", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2470,7 +2470,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_146", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2487,7 +2487,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_147", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2504,7 +2504,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_148", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2521,7 +2521,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_149", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2538,7 +2538,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_150", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2555,7 +2555,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_151", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2572,7 +2572,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_152", - "text": "" + "text": "测试数据" }, "type": 50, "valid": 0, @@ -2589,7 +2589,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_153", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2606,7 +2606,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_154", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2623,7 +2623,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_155", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2640,7 +2640,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_156", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2657,7 +2657,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_157", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2674,7 +2674,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_158", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2691,7 +2691,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_159", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2708,7 +2708,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_160", - "text": "" + "text": "测试数据" }, "type": 58, "valid": 0, @@ -2725,7 +2725,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_161", - "text": "" + "text": "测试数据" }, "type": 62, "valid": 0, @@ -2742,7 +2742,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_162", - "text": "" + "text": "测试数据" }, "type": 62, "valid": 0, @@ -2759,7 +2759,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_163", - "text": "" + "text": "测试数据" }, "type": 62, "valid": 0, @@ -2776,7 +2776,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_164", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2793,7 +2793,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_165", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2810,7 +2810,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_166", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2827,7 +2827,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_167", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2844,7 +2844,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_168", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2861,7 +2861,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_169", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2878,7 +2878,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_170", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2895,7 +2895,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_171", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2912,7 +2912,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_172", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2929,7 +2929,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_173", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -2946,7 +2946,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_174", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -2963,7 +2963,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_175", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -2980,7 +2980,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_176", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -2997,7 +2997,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_177", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3014,7 +3014,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_178", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3031,7 +3031,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_179", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3048,7 +3048,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_180", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3065,7 +3065,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_181", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3082,7 +3082,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_182", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3099,7 +3099,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_183", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -3116,7 +3116,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_184", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3133,7 +3133,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_185", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -3150,7 +3150,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_186", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -3167,7 +3167,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_187", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -3184,7 +3184,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_188", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -3201,7 +3201,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_189", - "text": "" + "text": "测试数据" }, "type": 62, "valid": 0, @@ -3218,7 +3218,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_190", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -3235,7 +3235,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_191", - "text": "" + "text": "测试数据" }, "type": 130, "valid": 0, @@ -3252,7 +3252,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_192", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3337,7 +3337,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_197", - "text": "" + "text": "测试数据" }, "type": 62, "valid": 0, @@ -3371,7 +3371,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_199", - "text": "" + "text": "测试数据" }, "type": 88, "valid": 0, @@ -3439,7 +3439,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_203", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3456,7 +3456,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_204", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3473,7 +3473,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_205", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3490,7 +3490,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_206", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3507,7 +3507,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_207", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3524,7 +3524,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_208", - "text": "" + "text": "测试数据" }, "type": 8, "valid": 0, @@ -3541,7 +3541,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_209", - "text": "" + "text": "测试数据" }, "type": 9, "valid": 0, @@ -3558,7 +3558,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_210", - "text": "" + "text": "测试数据" }, "type": 9, "valid": 0, @@ -3575,7 +3575,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_211", - "text": "" + "text": "测试数据" }, "type": 9, "valid": 0, @@ -3592,7 +3592,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_212", - "text": "" + "text": "测试数据" }, "type": 9, "valid": 0, @@ -3609,7 +3609,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_213", - "text": "" + "text": "测试数据" }, "type": 10, "valid": 0, @@ -3626,7 +3626,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_214", - "text": "" + "text": "测试数据" }, "type": 10, "valid": 0, @@ -3643,7 +3643,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_215", - "text": "" + "text": "测试数据" }, "type": 10, "valid": 0, @@ -3660,7 +3660,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_216", - "text": "" + "text": "测试数据" }, "type": 10, "valid": 0, @@ -3677,7 +3677,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_217", - "text": "" + "text": "测试数据" }, "type": 10, "valid": 0, @@ -3694,7 +3694,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_218", - "text": "" + "text": "测试数据" }, "type": 10, "valid": 0, @@ -3711,7 +3711,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_219", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3728,7 +3728,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_220", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3745,7 +3745,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_221", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3762,7 +3762,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_222", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3779,7 +3779,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_223", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3796,7 +3796,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_224", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3813,7 +3813,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_225", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3830,7 +3830,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_226", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3847,7 +3847,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_227", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3864,7 +3864,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_228", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3881,7 +3881,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_229", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -3898,7 +3898,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_230", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -3915,7 +3915,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_231", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -3932,7 +3932,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_232", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -3949,7 +3949,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_233", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -3966,7 +3966,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_234", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -3983,7 +3983,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_235", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -4000,7 +4000,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_236", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -4017,7 +4017,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_237", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -4034,7 +4034,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_238", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -4051,7 +4051,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_239", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4068,7 +4068,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_240", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4085,7 +4085,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_241", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4102,7 +4102,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_242", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4119,7 +4119,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_243", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4136,7 +4136,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_244", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4153,7 +4153,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_245", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4170,7 +4170,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_246", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4187,7 +4187,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_247", - "text": "" + "text": "测试数据" }, "type": 16, "valid": 0, @@ -4204,7 +4204,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_248", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4221,7 +4221,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_249", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4238,7 +4238,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_250", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4255,7 +4255,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_251", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4272,7 +4272,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_252", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4289,7 +4289,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_253", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4306,7 +4306,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_254", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4323,7 +4323,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_255", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4340,7 +4340,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_256", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4357,7 +4357,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_257", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4374,7 +4374,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_258", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4391,7 +4391,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_259", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -4408,7 +4408,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_260", - "text": "" + "text": "测试数据" }, "type": 20, "valid": 0, @@ -4425,7 +4425,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_261", - "text": "" + "text": "测试数据" }, "type": 20, "valid": 0, @@ -4442,7 +4442,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_262", - "text": "" + "text": "测试数据" }, "type": 20, "valid": 0, @@ -4459,7 +4459,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_263", - "text": "" + "text": "测试数据" }, "type": 20, "valid": 0, @@ -4476,7 +4476,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_264", - "text": "" + "text": "测试数据" }, "type": 20, "valid": 0, @@ -4493,7 +4493,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_265", - "text": "" + "text": "测试数据" }, "type": 20, "valid": 0, @@ -4510,7 +4510,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_266", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4527,7 +4527,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_267", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4544,7 +4544,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_268", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4561,7 +4561,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_269", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4578,7 +4578,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_270", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4595,7 +4595,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_271", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4612,7 +4612,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_272", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4629,7 +4629,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_273", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4646,7 +4646,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_274", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4663,7 +4663,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_275", - "text": "" + "text": "测试数据" }, "type": 43, "valid": 0, @@ -4680,7 +4680,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_276", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4697,7 +4697,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_277", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4714,7 +4714,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_278", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4731,7 +4731,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_279", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4748,7 +4748,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_280", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4765,7 +4765,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_281", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4782,7 +4782,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_282", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4799,7 +4799,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_283", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4816,7 +4816,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_284", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4833,7 +4833,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_285", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4850,7 +4850,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_286", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4867,7 +4867,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_287", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4884,7 +4884,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_288", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -4901,7 +4901,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_289", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -4918,7 +4918,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_290", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -4935,7 +4935,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_291", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -4952,7 +4952,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_292", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -4969,7 +4969,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_293", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -4986,7 +4986,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_294", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -5003,7 +5003,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_295", - "text": "" + "text": "测试数据" }, "type": 64, "valid": 0, @@ -5020,7 +5020,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_296", - "text": "" + "text": "测试数据" }, "type": 68, "valid": 0, @@ -5037,7 +5037,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_297", - "text": "" + "text": "测试数据" }, "type": 68, "valid": 0, @@ -5054,7 +5054,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_298", - "text": "" + "text": "测试数据" }, "type": 68, "valid": 0, @@ -5071,7 +5071,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_299", - "text": "" + "text": "测试数据" }, "type": 68, "valid": 0, @@ -5088,7 +5088,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_300", - "text": "" + "text": "测试数据" }, "type": 84, "valid": 0, @@ -5105,7 +5105,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_301", - "text": "" + "text": "测试数据" }, "type": 84, "valid": 0, @@ -5122,7 +5122,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_302", - "text": "" + "text": "测试数据" }, "type": 84, "valid": 0, @@ -5139,7 +5139,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_303", - "text": "" + "text": "测试数据" }, "type": 84, "valid": 0, @@ -5156,7 +5156,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_304", - "text": "" + "text": "测试数据" }, "type": 85, "valid": 0, @@ -5173,7 +5173,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_305", - "text": "" + "text": "测试数据" }, "type": 85, "valid": 0, @@ -5190,7 +5190,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_306", - "text": "" + "text": "测试数据" }, "type": 85, "valid": 0, @@ -5207,7 +5207,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_307", - "text": "" + "text": "测试数据" }, "type": 85, "valid": 0, @@ -5224,7 +5224,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_308", - "text": "" + "text": "测试数据" }, "type": 85, "valid": 0, @@ -5241,7 +5241,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_309", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5258,7 +5258,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_310", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5275,7 +5275,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_311", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5292,7 +5292,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_312", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5309,7 +5309,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_313", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5326,7 +5326,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_314", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5343,7 +5343,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_315", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5360,7 +5360,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_316", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5377,7 +5377,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_317", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5394,7 +5394,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_318", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5411,7 +5411,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_319", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5428,7 +5428,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_320", - "text": "" + "text": "测试数据" }, "type": 96, "valid": 0, @@ -5445,7 +5445,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_321", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5462,7 +5462,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_322", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5479,7 +5479,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_323", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5496,7 +5496,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_324", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5513,7 +5513,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_325", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5530,7 +5530,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_326", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5547,7 +5547,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_327", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5564,7 +5564,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_328", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5581,7 +5581,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_329", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5598,7 +5598,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_330", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5615,7 +5615,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_331", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, @@ -5632,7 +5632,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_332", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5649,7 +5649,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_333", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5666,7 +5666,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_334", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5683,7 +5683,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_335", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5700,7 +5700,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_336", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5717,7 +5717,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_337", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5734,7 +5734,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_338", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5751,7 +5751,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_339", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5768,7 +5768,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_340", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5785,7 +5785,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_341", - "text": "" + "text": "测试数据" }, "type": 128, "valid": 0, @@ -5802,7 +5802,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_342", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5819,7 +5819,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_343", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5836,7 +5836,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_344", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5853,7 +5853,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_345", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5870,7 +5870,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_346", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5887,7 +5887,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_347", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5904,7 +5904,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_348", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5921,7 +5921,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_349", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5938,7 +5938,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_350", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5955,7 +5955,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_351", - "text": "" + "text": "测试数据" }, "type": 131, "valid": 0, @@ -5972,7 +5972,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_352", - "text": "" + "text": "测试数据" }, "type": 11, "valid": 0, @@ -5989,7 +5989,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_353", - "text": "" + "text": "测试数据" }, "type": 12, "valid": 0, @@ -6006,7 +6006,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_354", - "text": "" + "text": "测试数据" }, "type": 18, "valid": 0, @@ -6023,7 +6023,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_355", - "text": "" + "text": "测试数据" }, "type": 24, "valid": 0, @@ -6040,7 +6040,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_356", - "text": "" + "text": "测试数据" }, "type": 47, "valid": 0, @@ -6057,7 +6057,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_357", - "text": "" + "text": "测试数据" }, "type": 63, "valid": 0, @@ -6074,7 +6074,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_358", - "text": "" + "text": "测试数据" }, "type": 68, "valid": 0, @@ -6091,7 +6091,7 @@ "type_sp": 1, "tasktxt": { "key": "taskcond_rdtask_condi_tasktxt_359", - "text": "" + "text": "测试数据" }, "type": 104, "valid": 0, diff --git a/bin/json/game_shopitem.json b/bin/json/game_shopitem.json index 18105432a..4961aaa35 100644 --- a/bin/json/game_shopitem.json +++ b/bin/json/game_shopitem.json @@ -725,7 +725,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2237,7 +2237,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -2993,7 +2993,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -3749,7 +3749,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -4505,7 +4505,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -5261,7 +5261,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6017,7 +6017,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6053,7 +6053,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6125,7 +6125,7 @@ "iteminfo": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 10 } ], @@ -6161,7 +6161,7 @@ "iteminfo": [ { "a": "item", - "t": "10017", + "t": "10000003", "n": 10 } ], @@ -6197,7 +6197,7 @@ "iteminfo": [ { "a": "item", - "t": "600001", + "t": "10000004", "n": 10 } ], @@ -6233,7 +6233,7 @@ "iteminfo": [ { "a": "item", - "t": "1000001", + "t": "17030002", "n": 1 } ], @@ -6413,7 +6413,7 @@ "iteminfo": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 } ], @@ -6449,7 +6449,7 @@ "iteminfo": [ { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 } ], @@ -6485,7 +6485,7 @@ "iteminfo": [ { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -6521,7 +6521,7 @@ "iteminfo": [ { "a": "item", - "t": "600005", + "t": "10000011", "n": 1 } ], @@ -6557,7 +6557,7 @@ "iteminfo": [ { "a": "item", - "t": "600006", + "t": "10000012", "n": 1 } ], @@ -6593,7 +6593,7 @@ "iteminfo": [ { "a": "item", - "t": "600007", + "t": "10000013", "n": 1 } ], @@ -6629,7 +6629,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6773,7 +6773,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6809,7 +6809,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 } ], @@ -6845,7 +6845,7 @@ "iteminfo": [ { "a": "item", - "t": "600001", + "t": "10000004", "n": 10 } ], @@ -6917,7 +6917,7 @@ "iteminfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -6953,7 +6953,7 @@ "iteminfo": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 100 } ], @@ -6989,7 +6989,7 @@ "iteminfo": [ { "a": "item", - "t": "120002", + "t": "13001002", "n": 100 } ], @@ -7025,7 +7025,7 @@ "iteminfo": [ { "a": "item", - "t": "120003", + "t": "13001003", "n": 100 } ], @@ -7061,7 +7061,7 @@ "iteminfo": [ { "a": "item", - "t": "120004", + "t": "13002001", "n": 100 } ], @@ -7097,7 +7097,7 @@ "iteminfo": [ { "a": "item", - "t": "120005", + "t": "13002002", "n": 100 } ], @@ -7133,7 +7133,7 @@ "iteminfo": [ { "a": "item", - "t": "120006", + "t": "13002003", "n": 100 } ], @@ -7169,7 +7169,7 @@ "iteminfo": [ { "a": "item", - "t": "120007", + "t": "13003001", "n": 100 } ], @@ -7205,7 +7205,7 @@ "iteminfo": [ { "a": "item", - "t": "120008", + "t": "13003002", "n": 100 } ], @@ -7241,7 +7241,7 @@ "iteminfo": [ { "a": "item", - "t": "120009", + "t": "13003003", "n": 100 } ], @@ -7277,7 +7277,7 @@ "iteminfo": [ { "a": "item", - "t": "120101", + "t": "13000001", "n": 100 } ], @@ -7313,7 +7313,7 @@ "iteminfo": [ { "a": "item", - "t": "120102", + "t": "13000002", "n": 100 } ], @@ -7349,7 +7349,7 @@ "iteminfo": [ { "a": "item", - "t": "120103", + "t": "13000003", "n": 100 } ], @@ -7385,7 +7385,7 @@ "iteminfo": [ { "a": "item", - "t": "120104", + "t": "13000004", "n": 100 } ], diff --git a/bin/json/game_sign.json b/bin/json/game_sign.json index dfd11958b..7032a694f 100644 --- a/bin/json/game_sign.json +++ b/bin/json/game_sign.json @@ -44,14 +44,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ] @@ -158,14 +158,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 3 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 3 } ] @@ -272,14 +272,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 4 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 4 } ] @@ -386,14 +386,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ] @@ -633,14 +633,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ] @@ -747,14 +747,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 3 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 3 } ] @@ -861,14 +861,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 4 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 4 } ] @@ -975,14 +975,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ] @@ -1222,14 +1222,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ] @@ -1336,14 +1336,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 3 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 3 } ] @@ -1450,14 +1450,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 4 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 4 } ] @@ -1564,14 +1564,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ] @@ -1640,14 +1640,14 @@ "loopgift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 } ], "gamegift": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 } ] diff --git a/bin/json/game_signextra.json b/bin/json/game_signextra.json index 74c494d22..715d72178 100644 --- a/bin/json/game_signextra.json +++ b/bin/json/game_signextra.json @@ -10,7 +10,7 @@ "extra": [ { "a": "item", - "t": "90001", + "t": "11025001", "n": 10 } ] @@ -26,7 +26,7 @@ "extra": [ { "a": "item", - "t": "90002", + "t": "11025004", "n": 10 } ] @@ -42,7 +42,7 @@ "extra": [ { "a": "item", - "t": "90003", + "t": "11044005", "n": 10 } ] @@ -58,7 +58,7 @@ "extra": [ { "a": "item", - "t": "90001", + "t": "11025001", "n": 10 } ] @@ -74,7 +74,7 @@ "extra": [ { "a": "item", - "t": "90002", + "t": "11025004", "n": 10 } ] @@ -90,7 +90,7 @@ "extra": [ { "a": "item", - "t": "90003", + "t": "11044005", "n": 10 } ] @@ -106,7 +106,7 @@ "extra": [ { "a": "item", - "t": "90001", + "t": "11025001", "n": 10 } ] @@ -122,7 +122,7 @@ "extra": [ { "a": "item", - "t": "90002", + "t": "11025004", "n": 10 } ] @@ -138,7 +138,7 @@ "extra": [ { "a": "item", - "t": "90003", + "t": "11044005", "n": 10 } ] diff --git a/bin/json/game_skillafteratk.json b/bin/json/game_skillafteratk.json index 656af5739..0158fe6b0 100644 --- a/bin/json/game_skillafteratk.json +++ b/bin/json/game_skillafteratk.json @@ -11398,10 +11398,10 @@ 1, 55 ], - "FollowSK": [], - "SucFollowSK": [ + "FollowSK": [ 245003112 ], + "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, "DpsRevisiType": 0, diff --git a/bin/json/game_smithycustomer.json b/bin/json/game_smithycustomer.json index 8645e9853..75c487485 100644 --- a/bin/json/game_smithycustomer.json +++ b/bin/json/game_smithycustomer.json @@ -27,7 +27,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 } ], @@ -54,7 +54,7 @@ "goods": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 } ], diff --git a/bin/json/game_taskactivereward.json b/bin/json/game_taskactivereward.json index 75a654bd5..b0c9f72a2 100644 --- a/bin/json/game_taskactivereward.json +++ b/bin/json/game_taskactivereward.json @@ -6,7 +6,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 1 } ], @@ -20,7 +20,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 2 } ], @@ -34,7 +34,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 3 } ], @@ -48,7 +48,7 @@ "reword": [ { "a": "item", - "t": "60002", + "t": "17020001", "n": 4 } ], diff --git a/bin/json/game_trolllv.json b/bin/json/game_trolllv.json index dcf62622d..faf63923c 100644 --- a/bin/json/game_trolllv.json +++ b/bin/json/game_trolllv.json @@ -10,7 +10,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], @@ -31,7 +31,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], @@ -52,7 +52,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], @@ -73,7 +73,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], @@ -94,7 +94,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], @@ -115,7 +115,7 @@ }, { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 } ], diff --git a/bin/json/game_vikingboss.json b/bin/json/game_vikingboss.json index 80e81b887..69cf8a4ba 100644 --- a/bin/json/game_vikingboss.json +++ b/bin/json/game_vikingboss.json @@ -4226,7 +4226,7 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 } ], @@ -4285,12 +4285,12 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 } ], @@ -4349,17 +4349,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4418,17 +4418,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4487,17 +4487,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4556,17 +4556,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4625,17 +4625,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4694,17 +4694,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4763,17 +4763,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4832,17 +4832,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4901,17 +4901,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], @@ -4970,17 +4970,17 @@ "dropshow": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 1 }, { "a": "item", - "t": "600003", + "t": "10000009", "n": 1 }, { "a": "item", - "t": "600004", + "t": "10000010", "n": 1 } ], diff --git a/bin/json/game_vikingchallenge.json b/bin/json/game_vikingchallenge.json deleted file mode 100644 index a77c0e0e2..000000000 --- a/bin/json/game_vikingchallenge.json +++ /dev/null @@ -1,102 +0,0 @@ -[ - { - "buynum": 1, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 10 - } - ] - }, - { - "buynum": 2, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 20 - } - ] - }, - { - "buynum": 3, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 30 - } - ] - }, - { - "buynum": 4, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 40 - } - ] - }, - { - "buynum": 5, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 50 - } - ] - }, - { - "buynum": 6, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 60 - } - ] - }, - { - "buynum": 7, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 70 - } - ] - }, - { - "buynum": 8, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 80 - } - ] - }, - { - "buynum": 9, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 90 - } - ] - }, - { - "buynum": 10, - "need": [ - { - "a": "attr", - "t": "diamond", - "n": 100 - } - ] - } -] \ No newline at end of file diff --git a/bin/json/game_vikingentrance.json b/bin/json/game_vikingentrance.json index c6cfefce1..93da74761 100644 --- a/bin/json/game_vikingentrance.json +++ b/bin/json/game_vikingentrance.json @@ -13,7 +13,7 @@ "key": "vikingexpedition_entrance_unlock_1", "text": "Level {0} unlocking" }, - "bg": "fb_rk_wjyz1", + "bg": "fb_rk_wj3", "open": "vikingexpedition" }, { @@ -30,7 +30,7 @@ "key": "vikingexpedition_entrance_unlock_2", "text": "Level {0} unlocking" }, - "bg": "fb_rk_wjyz2", + "bg": "fb_rk_zysp", "open": "vikingexpedition2" }, { @@ -47,7 +47,7 @@ "key": "vikingexpedition_entrance_unlock_3", "text": "Level {0} unlocking" }, - "bg": "fb_rk_wjyz3", + "bg": "fb_rk_zywq", "open": "vikingexpedition3" } ] \ No newline at end of file diff --git a/bin/json/game_vip.json b/bin/json/game_vip.json index 1d2eca1ee..e90273630 100644 --- a/bin/json/game_vip.json +++ b/bin/json/game_vip.json @@ -21,7 +21,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -63,7 +63,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -106,7 +106,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -149,7 +149,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -193,7 +193,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -237,7 +237,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -281,7 +281,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -326,7 +326,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -371,7 +371,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -416,7 +416,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -463,7 +463,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -510,7 +510,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -557,7 +557,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -605,7 +605,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { @@ -653,7 +653,7 @@ "giftinfo": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 }, { diff --git a/bin/json/game_worldall.json b/bin/json/game_worldall.json index 68895f6b6..b9c4b41e6 100644 --- a/bin/json/game_worldall.json +++ b/bin/json/game_worldall.json @@ -13,7 +13,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ] @@ -32,7 +32,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ] @@ -51,7 +51,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 }, { @@ -75,7 +75,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 }, { @@ -99,7 +99,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 }, { @@ -123,7 +123,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 }, { @@ -147,7 +147,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 }, { @@ -171,7 +171,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 2 }, { @@ -195,7 +195,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 3 } ] @@ -214,7 +214,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 4 } ] @@ -233,7 +233,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 5 } ] @@ -252,7 +252,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 6 } ] @@ -271,7 +271,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 7 } ] @@ -290,7 +290,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 8 } ] @@ -309,7 +309,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 9 } ] @@ -328,7 +328,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 } ] @@ -347,7 +347,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 11 } ] @@ -366,7 +366,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 12 } ] @@ -385,7 +385,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 13 } ] @@ -404,7 +404,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 14 } ] @@ -423,7 +423,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 15 } ] @@ -442,7 +442,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 16 } ] @@ -461,7 +461,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 17 } ] @@ -480,7 +480,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 18 } ] @@ -499,7 +499,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 19 } ] @@ -518,7 +518,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 20 } ] @@ -537,7 +537,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 21 } ] @@ -556,7 +556,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 22 } ] @@ -575,7 +575,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 23 } ] @@ -594,7 +594,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 24 } ] @@ -613,7 +613,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 25 } ] @@ -632,7 +632,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 26 } ] @@ -651,7 +651,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 27 } ] @@ -670,7 +670,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 28 } ] @@ -689,7 +689,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 29 } ] @@ -708,7 +708,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 30 } ] @@ -727,7 +727,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 31 } ] @@ -746,7 +746,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 32 } ] @@ -765,7 +765,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ] @@ -784,7 +784,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ] diff --git a/bin/json/game_worldtask.json b/bin/json/game_worldtask.json index b893a4088..78700daf6 100644 --- a/bin/json/game_worldtask.json +++ b/bin/json/game_worldtask.json @@ -9,27 +9,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_1", + "key": "taskcond_rdtask_condi_task_Tname_1", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_1", + "key": "taskcond_rdtask_condi_task_name_1", "text": "初来乍到" }, "npctxt": { - "key": "worldtask_world_task_npctxt_1", + "key": "taskcond_rdtask_condi_npctxt_1", "text": "和阿宝聊聊" }, "npc": 10010, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_1", + "key": "taskcond_rdtask_condi_completetasktxt_1", "text": "寻找熊猫" }, "completetask": [ 20001 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_1", + "key": "taskcond_rdtask_condi_deliver_npctxt_1", "text": "寻找熊猫" }, "deliver_npc": 0, @@ -53,27 +53,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_2", + "key": "taskcond_rdtask_condi_task_Tname_2", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_2", + "key": "taskcond_rdtask_condi_task_name_2", "text": "参观中轴城" }, "npctxt": { - "key": "worldtask_world_task_npctxt_2", + "key": "taskcond_rdtask_condi_npctxt_2", "text": "去路口寻找阿宝" }, "npc": 10020, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_2", + "key": "taskcond_rdtask_condi_completetasktxt_2", "text": "美好的风景总是让人流连,忍不住心向往之,倾心守护。" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_2", + "key": "taskcond_rdtask_condi_deliver_npctxt_2", "text": "美好的风景总是让人流连,忍不住心向往之,倾心守护。" }, "deliver_npc": 0, @@ -97,27 +97,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_3", + "key": "taskcond_rdtask_condi_task_Tname_3", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_3", + "key": "taskcond_rdtask_condi_task_name_3", "text": "邦尼兔的质疑" }, "npctxt": { - "key": "worldtask_world_task_npctxt_3", + "key": "taskcond_rdtask_condi_npctxt_3", "text": "相信或不相信,能做到或不能做到,守护者与你,命运的齿轮早已开始转动……" }, "npc": 10021, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_3", + "key": "taskcond_rdtask_condi_completetasktxt_3", "text": "相信或不相信,能做到或不能做到,守护者与你,命运的齿轮早已开始转动……" }, "completetask": [ 174 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_3", + "key": "taskcond_rdtask_condi_deliver_npctxt_3", "text": "相信或不相信,能做到或不能做到,守护者与你,命运的齿轮早已开始转动……" }, "deliver_npc": 10030, @@ -125,7 +125,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 1 } ], @@ -141,27 +141,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_4", + "key": "taskcond_rdtask_condi_task_Tname_4", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_4", + "key": "taskcond_rdtask_condi_task_name_4", "text": "可疑之人" }, "npctxt": { - "key": "worldtask_world_task_npctxt_4", + "key": "taskcond_rdtask_condi_npctxt_4", "text": "它究竟从何而来,又预示着怎样的命运,一切不得而知……" }, "npc": 10031, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_4", + "key": "taskcond_rdtask_condi_completetasktxt_4", "text": "它究竟从何而来,又预示着怎样的命运,一切不得而知……" }, "completetask": [ 114 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_4", + "key": "taskcond_rdtask_condi_deliver_npctxt_4", "text": "它究竟从何而来,又预示着怎样的命运,一切不得而知……" }, "deliver_npc": 10032, @@ -169,7 +169,7 @@ "reword": [ { "a": "item", - "t": "600002", + "t": "10000008", "n": 5 } ], @@ -185,27 +185,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_5", + "key": "taskcond_rdtask_condi_task_Tname_5", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_5", + "key": "taskcond_rdtask_condi_task_name_5", "text": "熊猫武馆" }, "npctxt": { - "key": "worldtask_world_task_npctxt_5", + "key": "taskcond_rdtask_condi_npctxt_5", "text": "在熊猫武馆细细搜索,或许会有意外收获。" }, "npc": 103, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_5", + "key": "taskcond_rdtask_condi_completetasktxt_5", "text": "在熊猫武馆细细搜索,或许会有意外收获。" }, "completetask": [ 203 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_5", + "key": "taskcond_rdtask_condi_deliver_npctxt_5", "text": "在熊猫武馆细细搜索,或许会有意外收获。" }, "deliver_npc": 10050, @@ -229,27 +229,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_6", + "key": "taskcond_rdtask_condi_task_Tname_6", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_6", + "key": "taskcond_rdtask_condi_task_name_6", "text": "紧急任务" }, "npctxt": { - "key": "worldtask_world_task_npctxt_6", + "key": "taskcond_rdtask_condi_npctxt_6", "text": "和阿宝聊聊" }, "npc": 10060, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_6", + "key": "taskcond_rdtask_condi_completetasktxt_6", "text": "被月中人选中之人,终将为守护而生。" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_6", + "key": "taskcond_rdtask_condi_deliver_npctxt_6", "text": "被月中人选中之人,终将为守护而生。" }, "deliver_npc": 0, @@ -273,27 +273,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_7", + "key": "taskcond_rdtask_condi_task_Tname_7", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_7", + "key": "taskcond_rdtask_condi_task_name_7", "text": "出发前的叮嘱" }, "npctxt": { - "key": "worldtask_world_task_npctxt_7", + "key": "taskcond_rdtask_condi_npctxt_7", "text": "试炼的终点,是名为勇者的觉醒。" }, "npc": 10070, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_7", + "key": "taskcond_rdtask_condi_completetasktxt_7", "text": "试炼的终点,是名为勇者的觉醒。" }, "completetask": [ 161 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_7", + "key": "taskcond_rdtask_condi_deliver_npctxt_7", "text": "试炼的终点,是名为勇者的觉醒。" }, "deliver_npc": 0, @@ -301,17 +301,17 @@ "reword": [ { "a": "item", - "t": "120001", + "t": "13001001", "n": 5 }, { "a": "item", - "t": "120002", + "t": "13001002", "n": 5 }, { "a": "item", - "t": "120003", + "t": "13001003", "n": 5 } ], @@ -327,27 +327,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_8", + "key": "taskcond_rdtask_condi_task_Tname_8", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_8", + "key": "taskcond_rdtask_condi_task_name_8", "text": "戈伯铁匠铺" }, "npctxt": { - "key": "worldtask_world_task_npctxt_8", + "key": "taskcond_rdtask_condi_npctxt_8", "text": "听说维京人热爱海上的风浪、甘醇的啤酒、勇猛的龙,还有那无与伦比的艺术品……" }, "npc": 10080, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_8", + "key": "taskcond_rdtask_condi_completetasktxt_8", "text": "听说维京人热爱海上的风浪、甘醇的啤酒、勇猛的龙,还有那无与伦比的艺术品……" }, "completetask": [ 304 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_8", + "key": "taskcond_rdtask_condi_deliver_npctxt_8", "text": "听说维京人热爱海上的风浪、甘醇的啤酒、勇猛的龙,还有那无与伦比的艺术品……" }, "deliver_npc": 10081, @@ -355,7 +355,7 @@ "reword": [ { "a": "item", - "t": "30001", + "t": "10000001", "n": 10 } ], @@ -371,27 +371,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_9", + "key": "taskcond_rdtask_condi_task_Tname_9", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_9", + "key": "taskcond_rdtask_condi_task_name_9", "text": "试炼再起" }, "npctxt": { - "key": "worldtask_world_task_npctxt_9", + "key": "taskcond_rdtask_condi_npctxt_9", "text": "这就是维京人的工艺技术吗,我现在感觉自己的实力确实增长不少。" }, "npc": 10090, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_9", + "key": "taskcond_rdtask_condi_completetasktxt_9", "text": "我迫不及待的想要体验新获得的历练了" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_9", + "key": "taskcond_rdtask_condi_deliver_npctxt_9", "text": "我迫不及待的想要体验新获得的历练了" }, "deliver_npc": 0, @@ -415,27 +415,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_10", + "key": "taskcond_rdtask_condi_task_Tname_10", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_10", + "key": "taskcond_rdtask_condi_task_name_10", "text": "归还原石" }, "npctxt": { - "key": "worldtask_world_task_npctxt_10", + "key": "taskcond_rdtask_condi_npctxt_10", "text": "骇客蛛会教我怎么做" }, "npc": 10100, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_10", + "key": "taskcond_rdtask_condi_completetasktxt_10", "text": "月光原石回到了它应该在的位置。" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_10", + "key": "taskcond_rdtask_condi_deliver_npctxt_10", "text": "月光原石回到了它应该在的位置。" }, "deliver_npc": 0, @@ -459,27 +459,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_11", + "key": "taskcond_rdtask_condi_task_Tname_11", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_11", + "key": "taskcond_rdtask_condi_task_name_11", "text": "召唤英雄" }, "npctxt": { - "key": "worldtask_world_task_npctxt_11", + "key": "taskcond_rdtask_condi_npctxt_11", "text": "叩响【守护之地】的门扉,迎接英雄的到来。" }, "npc": 10110, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_11", + "key": "taskcond_rdtask_condi_completetasktxt_11", "text": "叩响【守护之地】的门扉,迎接英雄的到来。" }, "completetask": [ 306 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_11", + "key": "taskcond_rdtask_condi_deliver_npctxt_11", "text": "叩响【守护之地】的门扉,迎接英雄的到来。" }, "deliver_npc": 0, @@ -503,27 +503,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_12", + "key": "taskcond_rdtask_condi_task_Tname_12", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_12", + "key": "taskcond_rdtask_condi_task_name_12", "text": "梦魇的诞生" }, "npctxt": { - "key": "worldtask_world_task_npctxt_12", + "key": "taskcond_rdtask_condi_npctxt_12", "text": "沉睡梦魇,向死而生,追寻恐惧的身影、弧光与暗夜轮舞……" }, "npc": 10120, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_12", + "key": "taskcond_rdtask_condi_completetasktxt_12", "text": "沉睡梦魇,向死而生,追寻恐惧的身影、弧光与暗夜轮舞……" }, "completetask": [ 307 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_12", + "key": "taskcond_rdtask_condi_deliver_npctxt_12", "text": "沉睡梦魇,向死而生,追寻恐惧的身影、弧光与暗夜轮舞……" }, "deliver_npc": 0, @@ -547,27 +547,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_13", + "key": "taskcond_rdtask_condi_task_Tname_13", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_13", + "key": "taskcond_rdtask_condi_task_name_13", "text": "消失的阴影" }, "npctxt": { - "key": "worldtask_world_task_npctxt_13", + "key": "taskcond_rdtask_condi_npctxt_13", "text": "找骇客蛛指定战术" }, "npc": 10130, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_13", + "key": "taskcond_rdtask_condi_completetasktxt_13", "text": "梦魇消失了,虽然危险的根源并未被根除,但至少现在我们安全了,暂时的。" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_13", + "key": "taskcond_rdtask_condi_deliver_npctxt_13", "text": "梦魇消失了,虽然危险的根源并未被根除,但至少现在我们安全了,暂时的。" }, "deliver_npc": 0, @@ -591,27 +591,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_14", + "key": "taskcond_rdtask_condi_task_Tname_14", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_14", + "key": "taskcond_rdtask_condi_task_name_14", "text": "为阿宝穿戴3件任意装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_14", + "key": "taskcond_rdtask_condi_npctxt_14", "text": "为阿宝穿戴3件任意装备" }, "npc": 10140, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_14", + "key": "taskcond_rdtask_condi_completetasktxt_14", "text": "为阿宝穿戴3件任意装备" }, "completetask": [ 600001 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_14", + "key": "taskcond_rdtask_condi_deliver_npctxt_14", "text": "为阿宝穿戴3件任意装备" }, "deliver_npc": 10142, @@ -635,27 +635,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_15", + "key": "taskcond_rdtask_condi_task_Tname_15", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_15", + "key": "taskcond_rdtask_condi_task_name_15", "text": "强化武器+3(引导自动强化)" }, "npctxt": { - "key": "worldtask_world_task_npctxt_15", + "key": "taskcond_rdtask_condi_npctxt_15", "text": "强化武器+3(引导自动强化)" }, "npc": 10150, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_15", + "key": "taskcond_rdtask_condi_completetasktxt_15", "text": "强化武器+3(引导自动强化)" }, "completetask": [ 600002 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_15", + "key": "taskcond_rdtask_condi_deliver_npctxt_15", "text": "强化武器+3(引导自动强化)" }, "deliver_npc": 10152, @@ -679,27 +679,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_16", + "key": "taskcond_rdtask_condi_task_Tname_16", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_16", + "key": "taskcond_rdtask_condi_task_name_16", "text": "为1名英雄穿戴完整3星6件套" }, "npctxt": { - "key": "worldtask_world_task_npctxt_16", + "key": "taskcond_rdtask_condi_npctxt_16", "text": "为1名英雄穿戴完整3星6件套" }, "npc": 10160, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_16", + "key": "taskcond_rdtask_condi_completetasktxt_16", "text": "为1名英雄穿戴完整3星6件套" }, "completetask": [ 600003 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_16", + "key": "taskcond_rdtask_condi_deliver_npctxt_16", "text": "为1名英雄穿戴完整3星6件套" }, "deliver_npc": 10162, @@ -723,27 +723,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_17", + "key": "taskcond_rdtask_condi_task_Tname_17", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_17", + "key": "taskcond_rdtask_condi_task_name_17", "text": "通关1次维京远征boss2难度1" }, "npctxt": { - "key": "worldtask_world_task_npctxt_17", + "key": "taskcond_rdtask_condi_npctxt_17", "text": "通关1次维京远征boss2难度1" }, "npc": 10170, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_17", + "key": "taskcond_rdtask_condi_completetasktxt_17", "text": "通关1次维京远征boss2难度1" }, "completetask": [ 600004 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_17", + "key": "taskcond_rdtask_condi_deliver_npctxt_17", "text": "通关1次维京远征boss2难度1" }, "deliver_npc": 10172, @@ -767,27 +767,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_18", + "key": "taskcond_rdtask_condi_task_Tname_18", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_18", + "key": "taskcond_rdtask_condi_task_name_18", "text": "穿戴6件+3装备套装" }, "npctxt": { - "key": "worldtask_world_task_npctxt_18", + "key": "taskcond_rdtask_condi_npctxt_18", "text": "穿戴6件+3装备套装" }, "npc": 10180, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_18", + "key": "taskcond_rdtask_condi_completetasktxt_18", "text": "穿戴6件+3装备套装" }, "completetask": [ 600005 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_18", + "key": "taskcond_rdtask_condi_deliver_npctxt_18", "text": "穿戴6件+3装备套装" }, "deliver_npc": 10182, @@ -811,27 +811,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_19", + "key": "taskcond_rdtask_condi_task_Tname_19", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_19", + "key": "taskcond_rdtask_condi_task_name_19", "text": "关卡2-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_19", + "key": "taskcond_rdtask_condi_npctxt_19", "text": "关卡2-6" }, "npc": 10190, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_19", + "key": "taskcond_rdtask_condi_completetasktxt_19", "text": "关卡2-6" }, "completetask": [ 600006 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_19", + "key": "taskcond_rdtask_condi_deliver_npctxt_19", "text": "关卡2-6" }, "deliver_npc": 10192, @@ -855,27 +855,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_20", + "key": "taskcond_rdtask_condi_task_Tname_20", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_20", + "key": "taskcond_rdtask_condi_task_name_20", "text": "6件装备+6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_20", + "key": "taskcond_rdtask_condi_npctxt_20", "text": "6件装备+6" }, "npc": 10200, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_20", + "key": "taskcond_rdtask_condi_completetasktxt_20", "text": "6件装备+6" }, "completetask": [ 600007 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_20", + "key": "taskcond_rdtask_condi_deliver_npctxt_20", "text": "6件装备+6" }, "deliver_npc": 10202, @@ -899,27 +899,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_21", + "key": "taskcond_rdtask_condi_task_Tname_21", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_21", + "key": "taskcond_rdtask_condi_task_name_21", "text": "武馆上1次木桩" }, "npctxt": { - "key": "worldtask_world_task_npctxt_21", + "key": "taskcond_rdtask_condi_npctxt_21", "text": "武馆上1次木桩" }, "npc": 10210, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_21", + "key": "taskcond_rdtask_condi_completetasktxt_21", "text": "武馆上1次木桩" }, "completetask": [ 600008 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_21", + "key": "taskcond_rdtask_condi_deliver_npctxt_21", "text": "武馆上1次木桩" }, "deliver_npc": 10212, @@ -943,27 +943,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_22", + "key": "taskcond_rdtask_condi_task_Tname_22", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_22", + "key": "taskcond_rdtask_condi_task_name_22", "text": "武器副本boss1难度2刷1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_22", + "key": "taskcond_rdtask_condi_npctxt_22", "text": "武器副本boss1难度2刷1次" }, "npc": 10220, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_22", + "key": "taskcond_rdtask_condi_completetasktxt_22", "text": "武器副本boss1难度2刷1次" }, "completetask": [ 600009 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_22", + "key": "taskcond_rdtask_condi_deliver_npctxt_22", "text": "武器副本boss1难度2刷1次" }, "deliver_npc": 10222, @@ -987,27 +987,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_23", + "key": "taskcond_rdtask_condi_task_Tname_23", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_23", + "key": "taskcond_rdtask_condi_task_name_23", "text": "功夫大师挑战塔5层" }, "npctxt": { - "key": "worldtask_world_task_npctxt_23", + "key": "taskcond_rdtask_condi_npctxt_23", "text": "功夫大师挑战塔5层" }, "npc": 10230, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_23", + "key": "taskcond_rdtask_condi_completetasktxt_23", "text": "功夫大师挑战塔5层" }, "completetask": [ 600010 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_23", + "key": "taskcond_rdtask_condi_deliver_npctxt_23", "text": "功夫大师挑战塔5层" }, "deliver_npc": 10232, @@ -1031,27 +1031,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_24", + "key": "taskcond_rdtask_condi_task_Tname_24", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_24", + "key": "taskcond_rdtask_condi_task_name_24", "text": "关卡3-1" }, "npctxt": { - "key": "worldtask_world_task_npctxt_24", + "key": "taskcond_rdtask_condi_npctxt_24", "text": "关卡3-1" }, "npc": 10240, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_24", + "key": "taskcond_rdtask_condi_completetasktxt_24", "text": "关卡3-1" }, "completetask": [ 600011 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_24", + "key": "taskcond_rdtask_condi_deliver_npctxt_24", "text": "关卡3-1" }, "deliver_npc": 10242, @@ -1075,27 +1075,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_25", + "key": "taskcond_rdtask_condi_task_Tname_25", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_25", + "key": "taskcond_rdtask_condi_task_name_25", "text": "关卡3-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_25", + "key": "taskcond_rdtask_condi_npctxt_25", "text": "关卡3-6" }, "npc": 10250, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_25", + "key": "taskcond_rdtask_condi_completetasktxt_25", "text": "关卡3-6" }, "completetask": [ 600012 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_25", + "key": "taskcond_rdtask_condi_deliver_npctxt_25", "text": "关卡3-6" }, "deliver_npc": 10252, @@ -1119,27 +1119,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_26", + "key": "taskcond_rdtask_condi_task_Tname_26", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_26", + "key": "taskcond_rdtask_condi_task_name_26", "text": "通关觉醒副本boss1难度2" }, "npctxt": { - "key": "worldtask_world_task_npctxt_26", + "key": "taskcond_rdtask_condi_npctxt_26", "text": "通关觉醒副本boss1难度2" }, "npc": 10260, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_26", + "key": "taskcond_rdtask_condi_completetasktxt_26", "text": "通关觉醒副本boss1难度2" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_26", + "key": "taskcond_rdtask_condi_deliver_npctxt_26", "text": "通关觉醒副本boss1难度2" }, "deliver_npc": 10262, @@ -1163,27 +1163,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_27", + "key": "taskcond_rdtask_condi_task_Tname_27", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_27", + "key": "taskcond_rdtask_condi_task_name_27", "text": "英雄觉醒1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_27", + "key": "taskcond_rdtask_condi_npctxt_27", "text": "英雄觉醒1次" }, "npc": 10270, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_27", + "key": "taskcond_rdtask_condi_completetasktxt_27", "text": "英雄觉醒1次" }, "completetask": [ 600014 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_27", + "key": "taskcond_rdtask_condi_deliver_npctxt_27", "text": "英雄觉醒1次" }, "deliver_npc": 10272, @@ -1207,27 +1207,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_28", + "key": "taskcond_rdtask_condi_task_Tname_28", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_28", + "key": "taskcond_rdtask_condi_task_name_28", "text": "9件装备强化+6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_28", + "key": "taskcond_rdtask_condi_npctxt_28", "text": "9件装备强化+6" }, "npc": 10280, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_28", + "key": "taskcond_rdtask_condi_completetasktxt_28", "text": "9件装备强化+6" }, "completetask": [ 600015 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_28", + "key": "taskcond_rdtask_condi_deliver_npctxt_28", "text": "9件装备强化+6" }, "deliver_npc": 10282, @@ -1251,27 +1251,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_29", + "key": "taskcond_rdtask_condi_task_Tname_29", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_29", + "key": "taskcond_rdtask_condi_task_name_29", "text": "关卡4-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_29", + "key": "taskcond_rdtask_condi_npctxt_29", "text": "关卡4-6" }, "npc": 10290, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_29", + "key": "taskcond_rdtask_condi_completetasktxt_29", "text": "关卡4-6" }, "completetask": [ 600016 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_29", + "key": "taskcond_rdtask_condi_deliver_npctxt_29", "text": "关卡4-6" }, "deliver_npc": 10292, @@ -1295,27 +1295,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_30", + "key": "taskcond_rdtask_condi_task_Tname_30", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_30", + "key": "taskcond_rdtask_condi_task_name_30", "text": "装备副本boss2难度2刷1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_30", + "key": "taskcond_rdtask_condi_npctxt_30", "text": "装备副本boss2难度2刷1次" }, "npc": 10300, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_30", + "key": "taskcond_rdtask_condi_completetasktxt_30", "text": "装备副本boss2难度2刷1次" }, "completetask": [ 600017 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_30", + "key": "taskcond_rdtask_condi_deliver_npctxt_30", "text": "装备副本boss2难度2刷1次" }, "deliver_npc": 10302, @@ -1339,27 +1339,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_31", + "key": "taskcond_rdtask_condi_task_Tname_31", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_31", + "key": "taskcond_rdtask_condi_task_name_31", "text": "12件装备强化+6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_31", + "key": "taskcond_rdtask_condi_npctxt_31", "text": "12件装备强化+6" }, "npc": 10310, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_31", + "key": "taskcond_rdtask_condi_completetasktxt_31", "text": "12件装备强化+6" }, "completetask": [ 600018 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_31", + "key": "taskcond_rdtask_condi_deliver_npctxt_31", "text": "12件装备强化+6" }, "deliver_npc": 10312, @@ -1383,27 +1383,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_32", + "key": "taskcond_rdtask_condi_task_Tname_32", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_32", + "key": "taskcond_rdtask_condi_task_name_32", "text": "武馆木桩解锁3根" }, "npctxt": { - "key": "worldtask_world_task_npctxt_32", + "key": "taskcond_rdtask_condi_npctxt_32", "text": "武馆木桩解锁3根" }, "npc": 10320, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_32", + "key": "taskcond_rdtask_condi_completetasktxt_32", "text": "武馆木桩解锁3根" }, "completetask": [ 600019 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_32", + "key": "taskcond_rdtask_condi_deliver_npctxt_32", "text": "武馆木桩解锁3根" }, "deliver_npc": 10322, @@ -1427,27 +1427,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_33", + "key": "taskcond_rdtask_condi_task_Tname_33", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_33", + "key": "taskcond_rdtask_condi_task_name_33", "text": "功夫大师挑战塔10层" }, "npctxt": { - "key": "worldtask_world_task_npctxt_33", + "key": "taskcond_rdtask_condi_npctxt_33", "text": "功夫大师挑战塔10层" }, "npc": 10330, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_33", + "key": "taskcond_rdtask_condi_completetasktxt_33", "text": "功夫大师挑战塔10层" }, "completetask": [ 600020 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_33", + "key": "taskcond_rdtask_condi_deliver_npctxt_33", "text": "功夫大师挑战塔10层" }, "deliver_npc": 10332, @@ -1471,27 +1471,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_34", + "key": "taskcond_rdtask_condi_task_Tname_34", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_34", + "key": "taskcond_rdtask_condi_task_name_34", "text": "关卡5-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_34", + "key": "taskcond_rdtask_condi_npctxt_34", "text": "关卡5-6" }, "npc": 10340, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_34", + "key": "taskcond_rdtask_condi_completetasktxt_34", "text": "关卡5-6" }, "completetask": [ 600021 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_34", + "key": "taskcond_rdtask_condi_deliver_npctxt_34", "text": "关卡5-6" }, "deliver_npc": 10342, @@ -1515,27 +1515,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_35", + "key": "taskcond_rdtask_condi_task_Tname_35", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_35", + "key": "taskcond_rdtask_condi_task_name_35", "text": "穿指定套装2套(从解锁的装备boss套装里选)" }, "npctxt": { - "key": "worldtask_world_task_npctxt_35", + "key": "taskcond_rdtask_condi_npctxt_35", "text": "穿指定套装2套(从解锁的装备boss套装里选)" }, "npc": 10350, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_35", + "key": "taskcond_rdtask_condi_completetasktxt_35", "text": "穿指定套装2套(从解锁的装备boss套装里选)" }, "completetask": [ 600022 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_35", + "key": "taskcond_rdtask_condi_deliver_npctxt_35", "text": "穿指定套装2套(从解锁的装备boss套装里选)" }, "deliver_npc": 10352, @@ -1559,27 +1559,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_36", + "key": "taskcond_rdtask_condi_task_Tname_36", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_36", + "key": "taskcond_rdtask_condi_task_name_36", "text": "加入公会" }, "npctxt": { - "key": "worldtask_world_task_npctxt_36", + "key": "taskcond_rdtask_condi_npctxt_36", "text": "加入公会" }, "npc": 10360, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_36", + "key": "taskcond_rdtask_condi_completetasktxt_36", "text": "加入公会" }, "completetask": [ 600023 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_36", + "key": "taskcond_rdtask_condi_deliver_npctxt_36", "text": "加入公会" }, "deliver_npc": 10362, @@ -1603,27 +1603,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_37", + "key": "taskcond_rdtask_condi_task_Tname_37", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_37", + "key": "taskcond_rdtask_condi_task_name_37", "text": "装备副本boss2难度4刷1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_37", + "key": "taskcond_rdtask_condi_npctxt_37", "text": "装备副本boss2难度4刷1次" }, "npc": 10370, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_37", + "key": "taskcond_rdtask_condi_completetasktxt_37", "text": "装备副本boss2难度4刷1次" }, "completetask": [ 600024 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_37", + "key": "taskcond_rdtask_condi_deliver_npctxt_37", "text": "装备副本boss2难度4刷1次" }, "deliver_npc": 10372, @@ -1647,27 +1647,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_38", + "key": "taskcond_rdtask_condi_task_Tname_38", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_38", + "key": "taskcond_rdtask_condi_task_name_38", "text": "通关觉醒boss2通关难度2" }, "npctxt": { - "key": "worldtask_world_task_npctxt_38", + "key": "taskcond_rdtask_condi_npctxt_38", "text": "通关觉醒boss2通关难度2" }, "npc": 10380, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_38", + "key": "taskcond_rdtask_condi_completetasktxt_38", "text": "通关觉醒boss2通关难度2" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_38", + "key": "taskcond_rdtask_condi_deliver_npctxt_38", "text": "通关觉醒boss2通关难度2" }, "deliver_npc": 10382, @@ -1691,27 +1691,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_39", + "key": "taskcond_rdtask_condi_task_Tname_39", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_39", + "key": "taskcond_rdtask_condi_task_name_39", "text": "收集5个冷水药剂" }, "npctxt": { - "key": "worldtask_world_task_npctxt_39", + "key": "taskcond_rdtask_condi_npctxt_39", "text": "收集5个冷水药剂" }, "npc": 10390, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_39", + "key": "taskcond_rdtask_condi_completetasktxt_39", "text": "收集5个冷水药剂" }, "completetask": [ 600026 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_39", + "key": "taskcond_rdtask_condi_deliver_npctxt_39", "text": "收集5个冷水药剂" }, "deliver_npc": 10392, @@ -1735,27 +1735,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_40", + "key": "taskcond_rdtask_condi_task_Tname_40", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_40", + "key": "taskcond_rdtask_condi_task_name_40", "text": "1个英雄觉醒到3阶段" }, "npctxt": { - "key": "worldtask_world_task_npctxt_40", + "key": "taskcond_rdtask_condi_npctxt_40", "text": "1个英雄觉醒到3阶段" }, "npc": 10400, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_40", + "key": "taskcond_rdtask_condi_completetasktxt_40", "text": "1个英雄觉醒到3阶段" }, "completetask": [ 600027 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_40", + "key": "taskcond_rdtask_condi_deliver_npctxt_40", "text": "1个英雄觉醒到3阶段" }, "deliver_npc": 10402, @@ -1779,27 +1779,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_41", + "key": "taskcond_rdtask_condi_task_Tname_41", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_41", + "key": "taskcond_rdtask_condi_task_name_41", "text": "关卡6-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_41", + "key": "taskcond_rdtask_condi_npctxt_41", "text": "关卡6-6" }, "npc": 10410, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_41", + "key": "taskcond_rdtask_condi_completetasktxt_41", "text": "关卡6-6" }, "completetask": [ 600028 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_41", + "key": "taskcond_rdtask_condi_deliver_npctxt_41", "text": "关卡6-6" }, "deliver_npc": 10412, @@ -1823,27 +1823,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_42", + "key": "taskcond_rdtask_condi_task_Tname_42", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_42", + "key": "taskcond_rdtask_condi_task_name_42", "text": "12件装备强化+9" }, "npctxt": { - "key": "worldtask_world_task_npctxt_42", + "key": "taskcond_rdtask_condi_npctxt_42", "text": "12件装备强化+9" }, "npc": 10420, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_42", + "key": "taskcond_rdtask_condi_completetasktxt_42", "text": "12件装备强化+9" }, "completetask": [ 600029 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_42", + "key": "taskcond_rdtask_condi_deliver_npctxt_42", "text": "12件装备强化+9" }, "deliver_npc": 10422, @@ -1867,27 +1867,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_43", + "key": "taskcond_rdtask_condi_task_Tname_43", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_43", + "key": "taskcond_rdtask_condi_task_name_43", "text": "竞技场获得3次胜利" }, "npctxt": { - "key": "worldtask_world_task_npctxt_43", + "key": "taskcond_rdtask_condi_npctxt_43", "text": "竞技场获得3次胜利" }, "npc": 10430, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_43", + "key": "taskcond_rdtask_condi_completetasktxt_43", "text": "竞技场获得3次胜利" }, "completetask": [ 600030 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_43", + "key": "taskcond_rdtask_condi_deliver_npctxt_43", "text": "竞技场获得3次胜利" }, "deliver_npc": 10432, @@ -1911,27 +1911,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_44", + "key": "taskcond_rdtask_condi_task_Tname_44", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_44", + "key": "taskcond_rdtask_condi_task_name_44", "text": "通关觉醒boss3通关难度2" }, "npctxt": { - "key": "worldtask_world_task_npctxt_44", + "key": "taskcond_rdtask_condi_npctxt_44", "text": "通关觉醒boss3通关难度2" }, "npc": 10440, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_44", + "key": "taskcond_rdtask_condi_completetasktxt_44", "text": "通关觉醒boss3通关难度2" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_44", + "key": "taskcond_rdtask_condi_deliver_npctxt_44", "text": "通关觉醒boss3通关难度2" }, "deliver_npc": 10442, @@ -1955,27 +1955,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_45", + "key": "taskcond_rdtask_condi_task_Tname_45", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_45", + "key": "taskcond_rdtask_condi_task_name_45", "text": "3个英雄觉醒3阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_45", + "key": "taskcond_rdtask_condi_npctxt_45", "text": "3个英雄觉醒3阶" }, "npc": 10450, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_45", + "key": "taskcond_rdtask_condi_completetasktxt_45", "text": "3个英雄觉醒3阶" }, "completetask": [ 600032 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_45", + "key": "taskcond_rdtask_condi_deliver_npctxt_45", "text": "3个英雄觉醒3阶" }, "deliver_npc": 10452, @@ -1999,27 +1999,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_46", + "key": "taskcond_rdtask_condi_task_Tname_46", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_46", + "key": "taskcond_rdtask_condi_task_name_46", "text": "关卡7-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_46", + "key": "taskcond_rdtask_condi_npctxt_46", "text": "关卡7-6" }, "npc": 10460, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_46", + "key": "taskcond_rdtask_condi_completetasktxt_46", "text": "关卡7-6" }, "completetask": [ 600033 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_46", + "key": "taskcond_rdtask_condi_deliver_npctxt_46", "text": "关卡7-6" }, "deliver_npc": 10462, @@ -2043,27 +2043,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_47", + "key": "taskcond_rdtask_condi_task_Tname_47", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_47", + "key": "taskcond_rdtask_condi_task_name_47", "text": "搜集12个4星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_47", + "key": "taskcond_rdtask_condi_npctxt_47", "text": "搜集12个4星装备" }, "npc": 10470, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_47", + "key": "taskcond_rdtask_condi_completetasktxt_47", "text": "搜集12个4星装备" }, "completetask": [ 600034 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_47", + "key": "taskcond_rdtask_condi_deliver_npctxt_47", "text": "搜集12个4星装备" }, "deliver_npc": 10472, @@ -2087,27 +2087,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_48", + "key": "taskcond_rdtask_condi_task_Tname_48", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_48", + "key": "taskcond_rdtask_condi_task_name_48", "text": "功夫大师挑战塔20层" }, "npctxt": { - "key": "worldtask_world_task_npctxt_48", + "key": "taskcond_rdtask_condi_npctxt_48", "text": "功夫大师挑战塔20层" }, "npc": 10480, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_48", + "key": "taskcond_rdtask_condi_completetasktxt_48", "text": "功夫大师挑战塔20层" }, "completetask": [ 600035 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_48", + "key": "taskcond_rdtask_condi_deliver_npctxt_48", "text": "功夫大师挑战塔20层" }, "deliver_npc": 10482, @@ -2131,27 +2131,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_49", + "key": "taskcond_rdtask_condi_task_Tname_49", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_49", + "key": "taskcond_rdtask_condi_task_name_49", "text": "关卡8-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_49", + "key": "taskcond_rdtask_condi_npctxt_49", "text": "关卡8-6" }, "npc": 10490, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_49", + "key": "taskcond_rdtask_condi_completetasktxt_49", "text": "关卡8-6" }, "completetask": [ 600036 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_49", + "key": "taskcond_rdtask_condi_deliver_npctxt_49", "text": "关卡8-6" }, "deliver_npc": 10492, @@ -2175,27 +2175,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_50", + "key": "taskcond_rdtask_condi_task_Tname_50", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_50", + "key": "taskcond_rdtask_condi_task_name_50", "text": "装备副本boss1难度6刷1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_50", + "key": "taskcond_rdtask_condi_npctxt_50", "text": "装备副本boss1难度6刷1次" }, "npc": 10500, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_50", + "key": "taskcond_rdtask_condi_completetasktxt_50", "text": "装备副本boss1难度6刷1次" }, "completetask": [ 600037 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_50", + "key": "taskcond_rdtask_condi_deliver_npctxt_50", "text": "装备副本boss1难度6刷1次" }, "deliver_npc": 10502, @@ -2219,27 +2219,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_51", + "key": "taskcond_rdtask_condi_task_Tname_51", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_51", + "key": "taskcond_rdtask_condi_task_name_51", "text": "18件强化+9" }, "npctxt": { - "key": "worldtask_world_task_npctxt_51", + "key": "taskcond_rdtask_condi_npctxt_51", "text": "18件强化+9" }, "npc": 10510, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_51", + "key": "taskcond_rdtask_condi_completetasktxt_51", "text": "18件强化+9" }, "completetask": [ 600038 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_51", + "key": "taskcond_rdtask_condi_deliver_npctxt_51", "text": "18件强化+9" }, "deliver_npc": 10512, @@ -2263,27 +2263,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_52", + "key": "taskcond_rdtask_condi_task_Tname_52", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_52", + "key": "taskcond_rdtask_condi_task_name_52", "text": "关卡9-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_52", + "key": "taskcond_rdtask_condi_npctxt_52", "text": "关卡9-6" }, "npc": 10520, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_52", + "key": "taskcond_rdtask_condi_completetasktxt_52", "text": "关卡9-6" }, "completetask": [ 600039 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_52", + "key": "taskcond_rdtask_condi_deliver_npctxt_52", "text": "关卡9-6" }, "deliver_npc": 10522, @@ -2307,27 +2307,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_53", + "key": "taskcond_rdtask_condi_task_Tname_53", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_53", + "key": "taskcond_rdtask_condi_task_name_53", "text": "4个英雄觉醒3阶段" }, "npctxt": { - "key": "worldtask_world_task_npctxt_53", + "key": "taskcond_rdtask_condi_npctxt_53", "text": "4个英雄觉醒3阶段" }, "npc": 10530, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_53", + "key": "taskcond_rdtask_condi_completetasktxt_53", "text": "4个英雄觉醒3阶段" }, "completetask": [ 600040 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_53", + "key": "taskcond_rdtask_condi_deliver_npctxt_53", "text": "4个英雄觉醒3阶段" }, "deliver_npc": 10532, @@ -2351,27 +2351,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_54", + "key": "taskcond_rdtask_condi_task_Tname_54", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_54", + "key": "taskcond_rdtask_condi_task_name_54", "text": "关卡10-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_54", + "key": "taskcond_rdtask_condi_npctxt_54", "text": "关卡10-6" }, "npc": 10540, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_54", + "key": "taskcond_rdtask_condi_completetasktxt_54", "text": "关卡10-6" }, "completetask": [ 600041 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_54", + "key": "taskcond_rdtask_condi_deliver_npctxt_54", "text": "关卡10-6" }, "deliver_npc": 10542, @@ -2395,27 +2395,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_55", + "key": "taskcond_rdtask_condi_task_Tname_55", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_55", + "key": "taskcond_rdtask_condi_task_name_55", "text": "装备副本boss2难度6刷1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_55", + "key": "taskcond_rdtask_condi_npctxt_55", "text": "装备副本boss2难度6刷1次" }, "npc": 10550, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_55", + "key": "taskcond_rdtask_condi_completetasktxt_55", "text": "装备副本boss2难度6刷1次" }, "completetask": [ 600042 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_55", + "key": "taskcond_rdtask_condi_deliver_npctxt_55", "text": "装备副本boss2难度6刷1次" }, "deliver_npc": 10552, @@ -2439,27 +2439,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_56", + "key": "taskcond_rdtask_condi_task_Tname_56", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_56", + "key": "taskcond_rdtask_condi_task_name_56", "text": "8件强化+12" }, "npctxt": { - "key": "worldtask_world_task_npctxt_56", + "key": "taskcond_rdtask_condi_npctxt_56", "text": "8件强化+12" }, "npc": 10560, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_56", + "key": "taskcond_rdtask_condi_completetasktxt_56", "text": "8件强化+12" }, "completetask": [ 600043 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_56", + "key": "taskcond_rdtask_condi_deliver_npctxt_56", "text": "8件强化+12" }, "deliver_npc": 10562, @@ -2483,27 +2483,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_57", + "key": "taskcond_rdtask_condi_task_Tname_57", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_57", + "key": "taskcond_rdtask_condi_task_name_57", "text": "关卡11-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_57", + "key": "taskcond_rdtask_condi_npctxt_57", "text": "关卡11-6" }, "npc": 10570, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_57", + "key": "taskcond_rdtask_condi_completetasktxt_57", "text": "关卡11-6" }, "completetask": [ 600044 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_57", + "key": "taskcond_rdtask_condi_deliver_npctxt_57", "text": "关卡11-6" }, "deliver_npc": 10572, @@ -2527,27 +2527,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_58", + "key": "taskcond_rdtask_condi_task_Tname_58", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_58", + "key": "taskcond_rdtask_condi_task_name_58", "text": "竞技场获得10次胜利" }, "npctxt": { - "key": "worldtask_world_task_npctxt_58", + "key": "taskcond_rdtask_condi_npctxt_58", "text": "竞技场获得10次胜利" }, "npc": 10580, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_58", + "key": "taskcond_rdtask_condi_completetasktxt_58", "text": "竞技场获得10次胜利" }, "completetask": [ 600045 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_58", + "key": "taskcond_rdtask_condi_deliver_npctxt_58", "text": "竞技场获得10次胜利" }, "deliver_npc": 10582, @@ -2571,27 +2571,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_59", + "key": "taskcond_rdtask_condi_task_Tname_59", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_59", + "key": "taskcond_rdtask_condi_task_name_59", "text": "关卡12-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_59", + "key": "taskcond_rdtask_condi_npctxt_59", "text": "关卡12-6" }, "npc": 10590, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_59", + "key": "taskcond_rdtask_condi_completetasktxt_59", "text": "关卡12-6" }, "completetask": [ 600046 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_59", + "key": "taskcond_rdtask_condi_deliver_npctxt_59", "text": "关卡12-6" }, "deliver_npc": 10592, @@ -2615,27 +2615,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_60", + "key": "taskcond_rdtask_condi_task_Tname_60", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_60", + "key": "taskcond_rdtask_condi_task_name_60", "text": "主线困难1-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_60", + "key": "taskcond_rdtask_condi_npctxt_60", "text": "主线困难1-3" }, "npc": 10600, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_60", + "key": "taskcond_rdtask_condi_completetasktxt_60", "text": "主线困难1-3" }, "completetask": [ 600047 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_60", + "key": "taskcond_rdtask_condi_deliver_npctxt_60", "text": "主线困难1-3" }, "deliver_npc": 10602, @@ -2659,27 +2659,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_61", + "key": "taskcond_rdtask_condi_task_Tname_61", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_61", + "key": "taskcond_rdtask_condi_task_name_61", "text": "主线困难1-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_61", + "key": "taskcond_rdtask_condi_npctxt_61", "text": "主线困难1-6" }, "npc": 10610, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_61", + "key": "taskcond_rdtask_condi_completetasktxt_61", "text": "主线困难1-6" }, "completetask": [ 600048 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_61", + "key": "taskcond_rdtask_condi_deliver_npctxt_61", "text": "主线困难1-6" }, "deliver_npc": 10612, @@ -2703,27 +2703,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_62", + "key": "taskcond_rdtask_condi_task_Tname_62", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_62", + "key": "taskcond_rdtask_condi_task_name_62", "text": "主线困难2-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_62", + "key": "taskcond_rdtask_condi_npctxt_62", "text": "主线困难2-3" }, "npc": 10620, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_62", + "key": "taskcond_rdtask_condi_completetasktxt_62", "text": "主线困难2-3" }, "completetask": [ 600049 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_62", + "key": "taskcond_rdtask_condi_deliver_npctxt_62", "text": "主线困难2-3" }, "deliver_npc": 10622, @@ -2747,27 +2747,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_63", + "key": "taskcond_rdtask_condi_task_Tname_63", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_63", + "key": "taskcond_rdtask_condi_task_name_63", "text": "主线困难2-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_63", + "key": "taskcond_rdtask_condi_npctxt_63", "text": "主线困难2-6" }, "npc": 10630, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_63", + "key": "taskcond_rdtask_condi_completetasktxt_63", "text": "主线困难2-6" }, "completetask": [ 600050 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_63", + "key": "taskcond_rdtask_condi_deliver_npctxt_63", "text": "主线困难2-6" }, "deliver_npc": 10632, @@ -2791,27 +2791,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_64", + "key": "taskcond_rdtask_condi_task_Tname_64", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_64", + "key": "taskcond_rdtask_condi_task_name_64", "text": "主线困难3-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_64", + "key": "taskcond_rdtask_condi_npctxt_64", "text": "主线困难3-3" }, "npc": 10640, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_64", + "key": "taskcond_rdtask_condi_completetasktxt_64", "text": "主线困难3-3" }, "completetask": [ 600051 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_64", + "key": "taskcond_rdtask_condi_deliver_npctxt_64", "text": "主线困难3-3" }, "deliver_npc": 10642, @@ -2835,27 +2835,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_65", + "key": "taskcond_rdtask_condi_task_Tname_65", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_65", + "key": "taskcond_rdtask_condi_task_name_65", "text": "主线困难3-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_65", + "key": "taskcond_rdtask_condi_npctxt_65", "text": "主线困难3-6" }, "npc": 10650, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_65", + "key": "taskcond_rdtask_condi_completetasktxt_65", "text": "主线困难3-6" }, "completetask": [ 600052 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_65", + "key": "taskcond_rdtask_condi_deliver_npctxt_65", "text": "主线困难3-6" }, "deliver_npc": 10652, @@ -2879,27 +2879,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_66", + "key": "taskcond_rdtask_condi_task_Tname_66", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_66", + "key": "taskcond_rdtask_condi_task_name_66", "text": "主线困难4-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_66", + "key": "taskcond_rdtask_condi_npctxt_66", "text": "主线困难4-3" }, "npc": 10660, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_66", + "key": "taskcond_rdtask_condi_completetasktxt_66", "text": "主线困难4-3" }, "completetask": [ 600053 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_66", + "key": "taskcond_rdtask_condi_deliver_npctxt_66", "text": "主线困难4-3" }, "deliver_npc": 10662, @@ -2923,27 +2923,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_67", + "key": "taskcond_rdtask_condi_task_Tname_67", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_67", + "key": "taskcond_rdtask_condi_task_name_67", "text": "主线困难4-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_67", + "key": "taskcond_rdtask_condi_npctxt_67", "text": "主线困难4-6" }, "npc": 10670, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_67", + "key": "taskcond_rdtask_condi_completetasktxt_67", "text": "主线困难4-6" }, "completetask": [ 600054 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_67", + "key": "taskcond_rdtask_condi_deliver_npctxt_67", "text": "主线困难4-6" }, "deliver_npc": 10672, @@ -2967,27 +2967,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_68", + "key": "taskcond_rdtask_condi_task_Tname_68", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_68", + "key": "taskcond_rdtask_condi_task_name_68", "text": "主线困难5-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_68", + "key": "taskcond_rdtask_condi_npctxt_68", "text": "主线困难5-3" }, "npc": 10680, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_68", + "key": "taskcond_rdtask_condi_completetasktxt_68", "text": "主线困难5-3" }, "completetask": [ 600055 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_68", + "key": "taskcond_rdtask_condi_deliver_npctxt_68", "text": "主线困难5-3" }, "deliver_npc": 10682, @@ -3011,27 +3011,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_69", + "key": "taskcond_rdtask_condi_task_Tname_69", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_69", + "key": "taskcond_rdtask_condi_task_name_69", "text": "主线困难5-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_69", + "key": "taskcond_rdtask_condi_npctxt_69", "text": "主线困难5-6" }, "npc": 10690, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_69", + "key": "taskcond_rdtask_condi_completetasktxt_69", "text": "主线困难5-6" }, "completetask": [ 600056 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_69", + "key": "taskcond_rdtask_condi_deliver_npctxt_69", "text": "主线困难5-6" }, "deliver_npc": 10692, @@ -3055,27 +3055,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_70", + "key": "taskcond_rdtask_condi_task_Tname_70", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_70", + "key": "taskcond_rdtask_condi_task_name_70", "text": "主线困难6-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_70", + "key": "taskcond_rdtask_condi_npctxt_70", "text": "主线困难6-3" }, "npc": 10700, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_70", + "key": "taskcond_rdtask_condi_completetasktxt_70", "text": "主线困难6-3" }, "completetask": [ 600057 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_70", + "key": "taskcond_rdtask_condi_deliver_npctxt_70", "text": "主线困难6-3" }, "deliver_npc": 10702, @@ -3099,27 +3099,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_71", + "key": "taskcond_rdtask_condi_task_Tname_71", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_71", + "key": "taskcond_rdtask_condi_task_name_71", "text": "主线困难6-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_71", + "key": "taskcond_rdtask_condi_npctxt_71", "text": "主线困难6-6" }, "npc": 10710, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_71", + "key": "taskcond_rdtask_condi_completetasktxt_71", "text": "主线困难6-6" }, "completetask": [ 600058 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_71", + "key": "taskcond_rdtask_condi_deliver_npctxt_71", "text": "主线困难6-6" }, "deliver_npc": 10712, @@ -3143,27 +3143,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_72", + "key": "taskcond_rdtask_condi_task_Tname_72", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_72", + "key": "taskcond_rdtask_condi_task_name_72", "text": "主线困难7-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_72", + "key": "taskcond_rdtask_condi_npctxt_72", "text": "主线困难7-3" }, "npc": 10720, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_72", + "key": "taskcond_rdtask_condi_completetasktxt_72", "text": "主线困难7-3" }, "completetask": [ 600059 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_72", + "key": "taskcond_rdtask_condi_deliver_npctxt_72", "text": "主线困难7-3" }, "deliver_npc": 10722, @@ -3187,27 +3187,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_73", + "key": "taskcond_rdtask_condi_task_Tname_73", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_73", + "key": "taskcond_rdtask_condi_task_name_73", "text": "主线困难7-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_73", + "key": "taskcond_rdtask_condi_npctxt_73", "text": "主线困难7-6" }, "npc": 10730, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_73", + "key": "taskcond_rdtask_condi_completetasktxt_73", "text": "主线困难7-6" }, "completetask": [ 600060 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_73", + "key": "taskcond_rdtask_condi_deliver_npctxt_73", "text": "主线困难7-6" }, "deliver_npc": 10732, @@ -3231,27 +3231,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_74", + "key": "taskcond_rdtask_condi_task_Tname_74", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_74", + "key": "taskcond_rdtask_condi_task_name_74", "text": "主线困难8-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_74", + "key": "taskcond_rdtask_condi_npctxt_74", "text": "主线困难8-3" }, "npc": 10740, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_74", + "key": "taskcond_rdtask_condi_completetasktxt_74", "text": "主线困难8-3" }, "completetask": [ 600061 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_74", + "key": "taskcond_rdtask_condi_deliver_npctxt_74", "text": "主线困难8-3" }, "deliver_npc": 10742, @@ -3275,27 +3275,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_75", + "key": "taskcond_rdtask_condi_task_Tname_75", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_75", + "key": "taskcond_rdtask_condi_task_name_75", "text": "主线困难8-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_75", + "key": "taskcond_rdtask_condi_npctxt_75", "text": "主线困难8-6" }, "npc": 10750, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_75", + "key": "taskcond_rdtask_condi_completetasktxt_75", "text": "主线困难8-6" }, "completetask": [ 600062 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_75", + "key": "taskcond_rdtask_condi_deliver_npctxt_75", "text": "主线困难8-6" }, "deliver_npc": 10752, @@ -3319,27 +3319,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_76", + "key": "taskcond_rdtask_condi_task_Tname_76", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_76", + "key": "taskcond_rdtask_condi_task_name_76", "text": "主线困难9-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_76", + "key": "taskcond_rdtask_condi_npctxt_76", "text": "主线困难9-3" }, "npc": 10760, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_76", + "key": "taskcond_rdtask_condi_completetasktxt_76", "text": "主线困难9-3" }, "completetask": [ 600063 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_76", + "key": "taskcond_rdtask_condi_deliver_npctxt_76", "text": "主线困难9-3" }, "deliver_npc": 10762, @@ -3363,27 +3363,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_77", + "key": "taskcond_rdtask_condi_task_Tname_77", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_77", + "key": "taskcond_rdtask_condi_task_name_77", "text": "主线困难9-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_77", + "key": "taskcond_rdtask_condi_npctxt_77", "text": "主线困难9-6" }, "npc": 10770, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_77", + "key": "taskcond_rdtask_condi_completetasktxt_77", "text": "主线困难9-6" }, "completetask": [ 600064 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_77", + "key": "taskcond_rdtask_condi_deliver_npctxt_77", "text": "主线困难9-6" }, "deliver_npc": 10772, @@ -3407,27 +3407,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_78", + "key": "taskcond_rdtask_condi_task_Tname_78", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_78", + "key": "taskcond_rdtask_condi_task_name_78", "text": "主线困难10-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_78", + "key": "taskcond_rdtask_condi_npctxt_78", "text": "主线困难10-3" }, "npc": 10780, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_78", + "key": "taskcond_rdtask_condi_completetasktxt_78", "text": "主线困难10-3" }, "completetask": [ 600065 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_78", + "key": "taskcond_rdtask_condi_deliver_npctxt_78", "text": "主线困难10-3" }, "deliver_npc": 10782, @@ -3451,27 +3451,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_79", + "key": "taskcond_rdtask_condi_task_Tname_79", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_79", + "key": "taskcond_rdtask_condi_task_name_79", "text": "主线困难10-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_79", + "key": "taskcond_rdtask_condi_npctxt_79", "text": "主线困难10-6" }, "npc": 10790, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_79", + "key": "taskcond_rdtask_condi_completetasktxt_79", "text": "主线困难10-6" }, "completetask": [ 600066 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_79", + "key": "taskcond_rdtask_condi_deliver_npctxt_79", "text": "主线困难10-6" }, "deliver_npc": 10792, @@ -3495,27 +3495,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_80", + "key": "taskcond_rdtask_condi_task_Tname_80", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_80", + "key": "taskcond_rdtask_condi_task_name_80", "text": "主线困难11-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_80", + "key": "taskcond_rdtask_condi_npctxt_80", "text": "主线困难11-3" }, "npc": 10800, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_80", + "key": "taskcond_rdtask_condi_completetasktxt_80", "text": "主线困难11-3" }, "completetask": [ 600067 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_80", + "key": "taskcond_rdtask_condi_deliver_npctxt_80", "text": "主线困难11-3" }, "deliver_npc": 10802, @@ -3539,27 +3539,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_81", + "key": "taskcond_rdtask_condi_task_Tname_81", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_81", + "key": "taskcond_rdtask_condi_task_name_81", "text": "主线困难11-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_81", + "key": "taskcond_rdtask_condi_npctxt_81", "text": "主线困难11-6" }, "npc": 10810, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_81", + "key": "taskcond_rdtask_condi_completetasktxt_81", "text": "主线困难11-6" }, "completetask": [ 600068 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_81", + "key": "taskcond_rdtask_condi_deliver_npctxt_81", "text": "主线困难11-6" }, "deliver_npc": 10812, @@ -3583,27 +3583,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_82", + "key": "taskcond_rdtask_condi_task_Tname_82", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_82", + "key": "taskcond_rdtask_condi_task_name_82", "text": "主线困难12-3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_82", + "key": "taskcond_rdtask_condi_npctxt_82", "text": "主线困难12-3" }, "npc": 10820, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_82", + "key": "taskcond_rdtask_condi_completetasktxt_82", "text": "主线困难12-3" }, "completetask": [ 600069 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_82", + "key": "taskcond_rdtask_condi_deliver_npctxt_82", "text": "主线困难12-3" }, "deliver_npc": 10822, @@ -3627,27 +3627,27 @@ "des": 2, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_83", + "key": "taskcond_rdtask_condi_task_Tname_83", "text": "第一章:预言之声" }, "task_name": { - "key": "worldtask_world_task_task_name_83", + "key": "taskcond_rdtask_condi_task_name_83", "text": "主线困难12-6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_83", + "key": "taskcond_rdtask_condi_npctxt_83", "text": "主线困难12-6" }, "npc": 10830, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_83", + "key": "taskcond_rdtask_condi_completetasktxt_83", "text": "主线困难12-6" }, "completetask": [ 600070 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_83", + "key": "taskcond_rdtask_condi_deliver_npctxt_83", "text": "主线困难12-6" }, "deliver_npc": 10832, @@ -3671,27 +3671,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_84", + "key": "taskcond_rdtask_condi_task_Tname_84", "text": "欢迎到来" }, "task_name": { - "key": "worldtask_world_task_task_name_84", + "key": "taskcond_rdtask_condi_task_name_84", "text": "初次来到世界" }, "npctxt": { - "key": "worldtask_world_task_npctxt_84", + "key": "taskcond_rdtask_condi_npctxt_84", "text": "和门口的小家伙聊聊" }, "npc": 70070, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_84", + "key": "taskcond_rdtask_condi_completetasktxt_84", "text": "和门口的小家伙聊聊" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_84", + "key": "taskcond_rdtask_condi_deliver_npctxt_84", "text": "和门口的小家伙聊聊" }, "deliver_npc": 0, @@ -3715,27 +3715,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_85", + "key": "taskcond_rdtask_condi_task_Tname_85", "text": "武馆内勤奋的身影是?" }, "task_name": { - "key": "worldtask_world_task_task_name_85", + "key": "taskcond_rdtask_condi_task_name_85", "text": "盖在做什么" }, "npctxt": { - "key": "worldtask_world_task_npctxt_85", + "key": "taskcond_rdtask_condi_npctxt_85", "text": "盖在哪里坐着一些看上去像是太极的姿势,我或许可以找他聊聊。" }, "npc": 70010, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_85", + "key": "taskcond_rdtask_condi_completetasktxt_85", "text": "盖在哪里坐着一些看上去像是太极的姿势,我或许可以找他聊聊。" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_85", + "key": "taskcond_rdtask_condi_deliver_npctxt_85", "text": "盖在哪里坐着一些看上去像是太极的姿势,我或许可以找他聊聊。" }, "deliver_npc": 0, @@ -3759,27 +3759,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_86", + "key": "taskcond_rdtask_condi_task_Tname_86", "text": "铁匠铺门口身影是?" }, "task_name": { - "key": "worldtask_world_task_task_name_86", + "key": "taskcond_rdtask_condi_task_name_86", "text": "格里森" }, "npctxt": { - "key": "worldtask_world_task_npctxt_86", + "key": "taskcond_rdtask_condi_npctxt_86", "text": "那个绿色的小家伙,好像是叫格林森,看上去有些闷闷不乐,是发生了什么事情吗?" }, "npc": 70020, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_86", + "key": "taskcond_rdtask_condi_completetasktxt_86", "text": "那个绿色的小家伙,好像是叫格林森,看上去有些闷闷不乐,是发生了什么事情吗?" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_86", + "key": "taskcond_rdtask_condi_deliver_npctxt_86", "text": "那个绿色的小家伙,好像是叫格林森,看上去有些闷闷不乐,是发生了什么事情吗?" }, "deliver_npc": 0, @@ -3803,27 +3803,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_87", + "key": "taskcond_rdtask_condi_task_Tname_87", "text": "铁匠铺门口身影是?" }, "task_name": { - "key": "worldtask_world_task_task_name_87", + "key": "taskcond_rdtask_condi_task_name_87", "text": "戈伯的唠叨" }, "npctxt": { - "key": "worldtask_world_task_npctxt_87", + "key": "taskcond_rdtask_condi_npctxt_87", "text": "戈伯在他的铁匠铺里干活,但我现在需要去找他聊聊。" }, "npc": 70021, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_87", + "key": "taskcond_rdtask_condi_completetasktxt_87", "text": "戈伯在他的铁匠铺里干活,但我现在需要去找他聊聊。" }, "completetask": [ 308 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_87", + "key": "taskcond_rdtask_condi_deliver_npctxt_87", "text": "戈伯在他的铁匠铺里干活,但我现在需要去找他聊聊。" }, "deliver_npc": 70023, @@ -3847,27 +3847,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_88", + "key": "taskcond_rdtask_condi_task_Tname_88", "text": "戈伯的嘱托" }, "task_name": { - "key": "worldtask_world_task_task_name_88", + "key": "taskcond_rdtask_condi_task_name_88", "text": "戈伯在等你" }, "npctxt": { - "key": "worldtask_world_task_npctxt_88", + "key": "taskcond_rdtask_condi_npctxt_88", "text": "戈伯有事情找我,我或许该去看看。" }, "npc": 70030, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_88", + "key": "taskcond_rdtask_condi_completetasktxt_88", "text": "戈伯有事情找我,我或许该去看看。" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_88", + "key": "taskcond_rdtask_condi_deliver_npctxt_88", "text": "戈伯有事情找我,我或许该去看看。" }, "deliver_npc": 0, @@ -3891,27 +3891,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_89", + "key": "taskcond_rdtask_condi_task_Tname_89", "text": "戈伯的嘱托" }, "task_name": { - "key": "worldtask_world_task_task_name_89", + "key": "taskcond_rdtask_condi_task_name_89", "text": "戈伯的思考" }, "npctxt": { - "key": "worldtask_world_task_npctxt_89", + "key": "taskcond_rdtask_condi_npctxt_89", "text": "去找戈伯聊聊,然后再看具体需要做些什么。" }, "npc": 70031, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_89", + "key": "taskcond_rdtask_condi_completetasktxt_89", "text": "任务完成了,是时候去找戈伯聊聊了。" }, "completetask": [ 309 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_89", + "key": "taskcond_rdtask_condi_deliver_npctxt_89", "text": "任务完成了,是时候去找戈伯聊聊了。" }, "deliver_npc": 70033, @@ -3935,27 +3935,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_90", + "key": "taskcond_rdtask_condi_task_Tname_90", "text": "武馆秘闻" }, "task_name": { - "key": "worldtask_world_task_task_name_90", + "key": "taskcond_rdtask_condi_task_name_90", "text": "瓦希尔指挥官" }, "npctxt": { - "key": "worldtask_world_task_npctxt_90", + "key": "taskcond_rdtask_condi_npctxt_90", "text": "瓦希尔指挥官在哪里做些什么,我或或许可以去看看" }, "npc": 70040, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_90", + "key": "taskcond_rdtask_condi_completetasktxt_90", "text": "瓦希尔指挥官在哪里做些什么,我或或许可以去看看" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_90", + "key": "taskcond_rdtask_condi_deliver_npctxt_90", "text": "瓦希尔指挥官在哪里做些什么,我或或许可以去看看" }, "deliver_npc": 0, @@ -3979,27 +3979,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_91", + "key": "taskcond_rdtask_condi_task_Tname_91", "text": "好像有人再看我?" }, "task_name": { - "key": "worldtask_world_task_task_name_91", + "key": "taskcond_rdtask_condi_task_name_91", "text": "小伊" }, "npctxt": { - "key": "worldtask_world_task_npctxt_91", + "key": "taskcond_rdtask_condi_npctxt_91", "text": "那不是小伊吗,她是在.....练武吗?" }, "npc": 70050, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_91", + "key": "taskcond_rdtask_condi_completetasktxt_91", "text": "那不是小伊吗,她是在.....练武吗?" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_91", + "key": "taskcond_rdtask_condi_deliver_npctxt_91", "text": "那不是小伊吗,她是在.....练武吗?" }, "deliver_npc": 0, @@ -4023,27 +4023,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_92", + "key": "taskcond_rdtask_condi_task_Tname_92", "text": "戈伯的委托" }, "task_name": { - "key": "worldtask_world_task_task_name_92", + "key": "taskcond_rdtask_condi_task_name_92", "text": "鼻涕粗" }, "npctxt": { - "key": "worldtask_world_task_npctxt_92", + "key": "taskcond_rdtask_condi_npctxt_92", "text": "鼻涕粗为什么会一个人在这里,是遇到了什么事情吗?" }, "npc": 70060, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_92", + "key": "taskcond_rdtask_condi_completetasktxt_92", "text": "鼻涕粗为什么会一个人在这里,是遇到了什么事情吗?" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_92", + "key": "taskcond_rdtask_condi_deliver_npctxt_92", "text": "鼻涕粗为什么会一个人在这里,是遇到了什么事情吗?" }, "deliver_npc": 0, @@ -4067,27 +4067,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_93", + "key": "taskcond_rdtask_condi_task_Tname_93", "text": "浇花1次" }, "task_name": { - "key": "worldtask_world_task_task_name_93", + "key": "taskcond_rdtask_condi_task_name_93", "text": "浇花1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_93", + "key": "taskcond_rdtask_condi_npctxt_93", "text": "浇花1次" }, "npc": 10140, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_93", + "key": "taskcond_rdtask_condi_completetasktxt_93", "text": "浇花1次" }, "completetask": [ 700001 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_93", + "key": "taskcond_rdtask_condi_deliver_npctxt_93", "text": "浇花1次" }, "deliver_npc": 0, @@ -4111,27 +4111,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_94", + "key": "taskcond_rdtask_condi_task_Tname_94", "text": "浇花2次" }, "task_name": { - "key": "worldtask_world_task_task_name_94", + "key": "taskcond_rdtask_condi_task_name_94", "text": "浇花2次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_94", + "key": "taskcond_rdtask_condi_npctxt_94", "text": "浇花2次" }, "npc": 10150, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_94", + "key": "taskcond_rdtask_condi_completetasktxt_94", "text": "浇花2次" }, "completetask": [ 700002 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_94", + "key": "taskcond_rdtask_condi_deliver_npctxt_94", "text": "浇花2次" }, "deliver_npc": 0, @@ -4155,27 +4155,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_95", + "key": "taskcond_rdtask_condi_task_Tname_95", "text": "浇花3次" }, "task_name": { - "key": "worldtask_world_task_task_name_95", + "key": "taskcond_rdtask_condi_task_name_95", "text": "浇花3次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_95", + "key": "taskcond_rdtask_condi_npctxt_95", "text": "浇花3次" }, "npc": 10160, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_95", + "key": "taskcond_rdtask_condi_completetasktxt_95", "text": "浇花3次" }, "completetask": [ 700003 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_95", + "key": "taskcond_rdtask_condi_deliver_npctxt_95", "text": "浇花3次" }, "deliver_npc": 0, @@ -4199,27 +4199,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_96", + "key": "taskcond_rdtask_condi_task_Tname_96", "text": "将初始英技能升级1次" }, "task_name": { - "key": "worldtask_world_task_task_name_96", + "key": "taskcond_rdtask_condi_task_name_96", "text": "将初始英技能升级1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_96", + "key": "taskcond_rdtask_condi_npctxt_96", "text": "将初始英技能升级1次" }, "npc": 10170, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_96", + "key": "taskcond_rdtask_condi_completetasktxt_96", "text": "将初始英技能升级1次" }, "completetask": [ 700004 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_96", + "key": "taskcond_rdtask_condi_deliver_npctxt_96", "text": "将初始英技能升级1次" }, "deliver_npc": 0, @@ -4243,27 +4243,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_97", + "key": "taskcond_rdtask_condi_task_Tname_97", "text": "将初始英技能升级5次" }, "task_name": { - "key": "worldtask_world_task_task_name_97", + "key": "taskcond_rdtask_condi_task_name_97", "text": "将初始英技能升级5次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_97", + "key": "taskcond_rdtask_condi_npctxt_97", "text": "将初始英技能升级5次" }, "npc": 10180, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_97", + "key": "taskcond_rdtask_condi_completetasktxt_97", "text": "将初始英技能升级5次" }, "completetask": [ 700005 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_97", + "key": "taskcond_rdtask_condi_deliver_npctxt_97", "text": "将初始英技能升级5次" }, "deliver_npc": 0, @@ -4287,27 +4287,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_98", + "key": "taskcond_rdtask_condi_task_Tname_98", "text": "升级技能9次" }, "task_name": { - "key": "worldtask_world_task_task_name_98", + "key": "taskcond_rdtask_condi_task_name_98", "text": "升级技能9次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_98", + "key": "taskcond_rdtask_condi_npctxt_98", "text": "升级技能9次" }, "npc": 10190, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_98", + "key": "taskcond_rdtask_condi_completetasktxt_98", "text": "升级技能9次" }, "completetask": [ 700006 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_98", + "key": "taskcond_rdtask_condi_deliver_npctxt_98", "text": "升级技能9次" }, "deliver_npc": 0, @@ -4331,27 +4331,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_99", + "key": "taskcond_rdtask_condi_task_Tname_99", "text": "将任意1个英雄能升满" }, "task_name": { - "key": "worldtask_world_task_task_name_99", + "key": "taskcond_rdtask_condi_task_name_99", "text": "将任意1个英雄能升满" }, "npctxt": { - "key": "worldtask_world_task_npctxt_99", + "key": "taskcond_rdtask_condi_npctxt_99", "text": "将任意1个英雄能升满" }, "npc": 10200, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_99", + "key": "taskcond_rdtask_condi_completetasktxt_99", "text": "将任意1个英雄能升满" }, "completetask": [ 700007 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_99", + "key": "taskcond_rdtask_condi_deliver_npctxt_99", "text": "将任意1个英雄能升满" }, "deliver_npc": 0, @@ -4375,27 +4375,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_100", + "key": "taskcond_rdtask_condi_task_Tname_100", "text": "升级技能15次" }, "task_name": { - "key": "worldtask_world_task_task_name_100", + "key": "taskcond_rdtask_condi_task_name_100", "text": "升级技能15次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_100", + "key": "taskcond_rdtask_condi_npctxt_100", "text": "升级技能15次" }, "npc": 10210, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_100", + "key": "taskcond_rdtask_condi_completetasktxt_100", "text": "升级技能15次" }, "completetask": [ 700008 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_100", + "key": "taskcond_rdtask_condi_deliver_npctxt_100", "text": "升级技能15次" }, "deliver_npc": 0, @@ -4419,27 +4419,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_101", + "key": "taskcond_rdtask_condi_task_Tname_101", "text": "将任意4个英雄技能升满" }, "task_name": { - "key": "worldtask_world_task_task_name_101", + "key": "taskcond_rdtask_condi_task_name_101", "text": "将任意4个英雄技能升满" }, "npctxt": { - "key": "worldtask_world_task_npctxt_101", + "key": "taskcond_rdtask_condi_npctxt_101", "text": "将任意4个英雄技能升满" }, "npc": 10220, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_101", + "key": "taskcond_rdtask_condi_completetasktxt_101", "text": "将任意4个英雄技能升满" }, "completetask": [ 700009 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_101", + "key": "taskcond_rdtask_condi_deliver_npctxt_101", "text": "将任意4个英雄技能升满" }, "deliver_npc": 0, @@ -4463,27 +4463,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_102", + "key": "taskcond_rdtask_condi_task_Tname_102", "text": "觉醒副本3次" }, "task_name": { - "key": "worldtask_world_task_task_name_102", + "key": "taskcond_rdtask_condi_task_name_102", "text": "觉醒副本3次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_102", + "key": "taskcond_rdtask_condi_npctxt_102", "text": "觉醒副本3次" }, "npc": 10230, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_102", + "key": "taskcond_rdtask_condi_completetasktxt_102", "text": "觉醒副本3次" }, "completetask": [ 700010 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_102", + "key": "taskcond_rdtask_condi_deliver_npctxt_102", "text": "觉醒副本3次" }, "deliver_npc": 0, @@ -4507,27 +4507,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_103", + "key": "taskcond_rdtask_condi_task_Tname_103", "text": "连续战斗3次" }, "task_name": { - "key": "worldtask_world_task_task_name_103", + "key": "taskcond_rdtask_condi_task_name_103", "text": "连续战斗3次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_103", + "key": "taskcond_rdtask_condi_npctxt_103", "text": "连续战斗10次" }, "npc": 10240, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_103", + "key": "taskcond_rdtask_condi_completetasktxt_103", "text": "连续战斗10次" }, "completetask": [ 700011 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_103", + "key": "taskcond_rdtask_condi_deliver_npctxt_103", "text": "连续战斗10次" }, "deliver_npc": 0, @@ -4551,27 +4551,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_104", + "key": "taskcond_rdtask_condi_task_Tname_104", "text": "任意英雄觉醒3阶段" }, "task_name": { - "key": "worldtask_world_task_task_name_104", + "key": "taskcond_rdtask_condi_task_name_104", "text": "任意英雄觉醒3阶段" }, "npctxt": { - "key": "worldtask_world_task_npctxt_104", + "key": "taskcond_rdtask_condi_npctxt_104", "text": "任意英雄觉醒3阶段" }, "npc": 10250, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_104", + "key": "taskcond_rdtask_condi_completetasktxt_104", "text": "任意英雄觉醒3阶段" }, "completetask": [ 700012 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_104", + "key": "taskcond_rdtask_condi_deliver_npctxt_104", "text": "任意英雄觉醒3阶段" }, "deliver_npc": 0, @@ -4595,27 +4595,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_105", + "key": "taskcond_rdtask_condi_task_Tname_105", "text": "竞技场5胜" }, "task_name": { - "key": "worldtask_world_task_task_name_105", + "key": "taskcond_rdtask_condi_task_name_105", "text": "竞技场5胜" }, "npctxt": { - "key": "worldtask_world_task_npctxt_105", + "key": "taskcond_rdtask_condi_npctxt_105", "text": "竞技场5胜" }, "npc": 10260, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_105", + "key": "taskcond_rdtask_condi_completetasktxt_105", "text": "竞技场5胜" }, "completetask": [ 700013 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_105", + "key": "taskcond_rdtask_condi_deliver_npctxt_105", "text": "竞技场5胜" }, "deliver_npc": 0, @@ -4639,27 +4639,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_106", + "key": "taskcond_rdtask_condi_task_Tname_106", "text": "使用星象1次" }, "task_name": { - "key": "worldtask_world_task_task_name_106", + "key": "taskcond_rdtask_condi_task_name_106", "text": "使用星象1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_106", + "key": "taskcond_rdtask_condi_npctxt_106", "text": "使用星象1次" }, "npc": 10270, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_106", + "key": "taskcond_rdtask_condi_completetasktxt_106", "text": "使用星象1次" }, "completetask": [ 700014 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_106", + "key": "taskcond_rdtask_condi_deliver_npctxt_106", "text": "使用星象1次" }, "deliver_npc": 0, @@ -4683,27 +4683,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_107", + "key": "taskcond_rdtask_condi_task_Tname_107", "text": "使用好友助战人员1次" }, "task_name": { - "key": "worldtask_world_task_task_name_107", + "key": "taskcond_rdtask_condi_task_name_107", "text": "使用好友助战人员1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_107", + "key": "taskcond_rdtask_condi_npctxt_107", "text": "使用好友助战人员1次" }, "npc": 10280, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_107", + "key": "taskcond_rdtask_condi_completetasktxt_107", "text": "使用好友助战人员1次" }, "completetask": [ 700015 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_107", + "key": "taskcond_rdtask_condi_deliver_npctxt_107", "text": "使用好友助战人员1次" }, "deliver_npc": 0, @@ -4727,27 +4727,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_108", + "key": "taskcond_rdtask_condi_task_Tname_108", "text": "指定英雄(阿宝)觉醒4阶" }, "task_name": { - "key": "worldtask_world_task_task_name_108", + "key": "taskcond_rdtask_condi_task_name_108", "text": "指定英雄(阿宝)觉醒4阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_108", + "key": "taskcond_rdtask_condi_npctxt_108", "text": "指定英雄(阿宝)觉醒4阶" }, "npc": 10290, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_108", + "key": "taskcond_rdtask_condi_completetasktxt_108", "text": "指定英雄(阿宝)觉醒4阶" }, "completetask": [ 700016 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_108", + "key": "taskcond_rdtask_condi_deliver_npctxt_108", "text": "指定英雄(阿宝)觉醒4阶" }, "deliver_npc": 0, @@ -4771,27 +4771,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_109", + "key": "taskcond_rdtask_condi_task_Tname_109", "text": "A阵营1个英雄觉醒4阶" }, "task_name": { - "key": "worldtask_world_task_task_name_109", + "key": "taskcond_rdtask_condi_task_name_109", "text": "A阵营1个英雄觉醒4阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_109", + "key": "taskcond_rdtask_condi_npctxt_109", "text": "A阵营1个英雄觉醒4阶" }, "npc": 10300, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_109", + "key": "taskcond_rdtask_condi_completetasktxt_109", "text": "A阵营1个英雄觉醒4阶" }, "completetask": [ 700017 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_109", + "key": "taskcond_rdtask_condi_deliver_npctxt_109", "text": "A阵营1个英雄觉醒4阶" }, "deliver_npc": 0, @@ -4815,27 +4815,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_110", + "key": "taskcond_rdtask_condi_task_Tname_110", "text": "B阵营1个英雄觉醒4阶" }, "task_name": { - "key": "worldtask_world_task_task_name_110", + "key": "taskcond_rdtask_condi_task_name_110", "text": "B阵营1个英雄觉醒4阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_110", + "key": "taskcond_rdtask_condi_npctxt_110", "text": "B阵营1个英雄觉醒4阶" }, "npc": 10310, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_110", + "key": "taskcond_rdtask_condi_completetasktxt_110", "text": "B阵营1个英雄觉醒4阶" }, "completetask": [ 700018 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_110", + "key": "taskcond_rdtask_condi_deliver_npctxt_110", "text": "B阵营1个英雄觉醒4阶" }, "deliver_npc": 0, @@ -4859,27 +4859,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_111", + "key": "taskcond_rdtask_condi_task_Tname_111", "text": "C阵营1个英雄觉醒4阶" }, "task_name": { - "key": "worldtask_world_task_task_name_111", + "key": "taskcond_rdtask_condi_task_name_111", "text": "C阵营1个英雄觉醒4阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_111", + "key": "taskcond_rdtask_condi_npctxt_111", "text": "C阵营1个英雄觉醒4阶" }, "npc": 10320, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_111", + "key": "taskcond_rdtask_condi_completetasktxt_111", "text": "C阵营1个英雄觉醒4阶" }, "completetask": [ 700019 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_111", + "key": "taskcond_rdtask_condi_deliver_npctxt_111", "text": "C阵营1个英雄觉醒4阶" }, "deliver_npc": 0, @@ -4903,27 +4903,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_112", + "key": "taskcond_rdtask_condi_task_Tname_112", "text": "将任意3个英雄能升满" }, "task_name": { - "key": "worldtask_world_task_task_name_112", + "key": "taskcond_rdtask_condi_task_name_112", "text": "将任意3个英雄能升满" }, "npctxt": { - "key": "worldtask_world_task_npctxt_112", + "key": "taskcond_rdtask_condi_npctxt_112", "text": "将任意3个英雄能升满" }, "npc": 10330, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_112", + "key": "taskcond_rdtask_condi_completetasktxt_112", "text": "将任意3个英雄能升满" }, "completetask": [ 700020 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_112", + "key": "taskcond_rdtask_condi_deliver_npctxt_112", "text": "将任意3个英雄能升满" }, "deliver_npc": 0, @@ -4947,27 +4947,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_113", + "key": "taskcond_rdtask_condi_task_Tname_113", "text": "商城金币消费10000" }, "task_name": { - "key": "worldtask_world_task_task_name_113", + "key": "taskcond_rdtask_condi_task_name_113", "text": "商城金币消费10000" }, "npctxt": { - "key": "worldtask_world_task_npctxt_113", + "key": "taskcond_rdtask_condi_npctxt_113", "text": "商城金币消费10000" }, "npc": 10340, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_113", + "key": "taskcond_rdtask_condi_completetasktxt_113", "text": "商城金币消费10000" }, "completetask": [ 700021 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_113", + "key": "taskcond_rdtask_condi_deliver_npctxt_113", "text": "商城金币消费10000" }, "deliver_npc": 0, @@ -4991,27 +4991,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_114", + "key": "taskcond_rdtask_condi_task_Tname_114", "text": "A阵营1个觉醒5阶" }, "task_name": { - "key": "worldtask_world_task_task_name_114", + "key": "taskcond_rdtask_condi_task_name_114", "text": "A阵营1个觉醒5阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_114", + "key": "taskcond_rdtask_condi_npctxt_114", "text": "A阵营1个觉醒5阶" }, "npc": 10350, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_114", + "key": "taskcond_rdtask_condi_completetasktxt_114", "text": "A阵营1个觉醒5阶" }, "completetask": [ 700022 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_114", + "key": "taskcond_rdtask_condi_deliver_npctxt_114", "text": "A阵营1个觉醒5阶" }, "deliver_npc": 0, @@ -5035,27 +5035,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_115", + "key": "taskcond_rdtask_condi_task_Tname_115", "text": "B阵营1个觉醒5阶" }, "task_name": { - "key": "worldtask_world_task_task_name_115", + "key": "taskcond_rdtask_condi_task_name_115", "text": "B阵营1个觉醒5阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_115", + "key": "taskcond_rdtask_condi_npctxt_115", "text": "B阵营1个觉醒5阶" }, "npc": 10360, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_115", + "key": "taskcond_rdtask_condi_completetasktxt_115", "text": "B阵营1个觉醒5阶" }, "completetask": [ 700023 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_115", + "key": "taskcond_rdtask_condi_deliver_npctxt_115", "text": "B阵营1个觉醒5阶" }, "deliver_npc": 0, @@ -5079,27 +5079,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_116", + "key": "taskcond_rdtask_condi_task_Tname_116", "text": "C阵营1个觉醒5阶" }, "task_name": { - "key": "worldtask_world_task_task_name_116", + "key": "taskcond_rdtask_condi_task_name_116", "text": "C阵营1个觉醒5阶" }, "npctxt": { - "key": "worldtask_world_task_npctxt_116", + "key": "taskcond_rdtask_condi_npctxt_116", "text": "C阵营1个觉醒5阶" }, "npc": 10370, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_116", + "key": "taskcond_rdtask_condi_completetasktxt_116", "text": "C阵营1个觉醒5阶" }, "completetask": [ 700024 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_116", + "key": "taskcond_rdtask_condi_deliver_npctxt_116", "text": "C阵营1个觉醒5阶" }, "deliver_npc": 0, @@ -5123,27 +5123,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_117", + "key": "taskcond_rdtask_condi_task_Tname_117", "text": "5星卡技能升满" }, "task_name": { - "key": "worldtask_world_task_task_name_117", + "key": "taskcond_rdtask_condi_task_name_117", "text": "5星卡技能升满" }, "npctxt": { - "key": "worldtask_world_task_npctxt_117", + "key": "taskcond_rdtask_condi_npctxt_117", "text": "5星卡技能升满" }, "npc": 10380, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_117", + "key": "taskcond_rdtask_condi_completetasktxt_117", "text": "5星卡技能升满" }, "completetask": [ 700025 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_117", + "key": "taskcond_rdtask_condi_deliver_npctxt_117", "text": "5星卡技能升满" }, "deliver_npc": 0, @@ -5167,27 +5167,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_118", + "key": "taskcond_rdtask_condi_task_Tname_118", "text": "维京远征boss1难度1" }, "task_name": { - "key": "worldtask_world_task_task_name_118", + "key": "taskcond_rdtask_condi_task_name_118", "text": "维京远征boss1难度1" }, "npctxt": { - "key": "worldtask_world_task_npctxt_118", + "key": "taskcond_rdtask_condi_npctxt_118", "text": "维京远征boss1难度1" }, "npc": 10140, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_118", + "key": "taskcond_rdtask_condi_completetasktxt_118", "text": "维京远征boss1难度1" }, "completetask": [ 700026 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_118", + "key": "taskcond_rdtask_condi_deliver_npctxt_118", "text": "维京远征boss1难度1" }, "deliver_npc": 0, @@ -5211,27 +5211,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_119", + "key": "taskcond_rdtask_condi_task_Tname_119", "text": "在戈伯处打造3件装备" }, "task_name": { - "key": "worldtask_world_task_task_name_119", + "key": "taskcond_rdtask_condi_task_name_119", "text": "在戈伯处打造3件装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_119", + "key": "taskcond_rdtask_condi_npctxt_119", "text": "在戈伯处打造3件装备" }, "npc": 10150, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_119", + "key": "taskcond_rdtask_condi_completetasktxt_119", "text": "在戈伯处打造3件装备" }, "completetask": [ 700027 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_119", + "key": "taskcond_rdtask_condi_deliver_npctxt_119", "text": "在戈伯处打造3件装备" }, "deliver_npc": 0, @@ -5255,27 +5255,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_120", + "key": "taskcond_rdtask_condi_task_Tname_120", "text": "在戈伯处打造6件装备" }, "task_name": { - "key": "worldtask_world_task_task_name_120", + "key": "taskcond_rdtask_condi_task_name_120", "text": "在戈伯处打造6件装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_120", + "key": "taskcond_rdtask_condi_npctxt_120", "text": "在戈伯处打造6件装备" }, "npc": 10160, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_120", + "key": "taskcond_rdtask_condi_completetasktxt_120", "text": "在戈伯处打造6件装备" }, "completetask": [ 700028 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_120", + "key": "taskcond_rdtask_condi_deliver_npctxt_120", "text": "在戈伯处打造6件装备" }, "deliver_npc": 0, @@ -5299,27 +5299,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_121", + "key": "taskcond_rdtask_condi_task_Tname_121", "text": "将炉温拉满1次" }, "task_name": { - "key": "worldtask_world_task_task_name_121", + "key": "taskcond_rdtask_condi_task_name_121", "text": "将炉温拉满1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_121", + "key": "taskcond_rdtask_condi_npctxt_121", "text": "将炉温拉满1次" }, "npc": 10170, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_121", + "key": "taskcond_rdtask_condi_completetasktxt_121", "text": "将炉温拉满1次" }, "completetask": [ 700029 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_121", + "key": "taskcond_rdtask_condi_deliver_npctxt_121", "text": "将炉温拉满1次" }, "deliver_npc": 0, @@ -5343,27 +5343,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_122", + "key": "taskcond_rdtask_condi_task_Tname_122", "text": "搜集图鉴3个" }, "task_name": { - "key": "worldtask_world_task_task_name_122", + "key": "taskcond_rdtask_condi_task_name_122", "text": "搜集图鉴3个" }, "npctxt": { - "key": "worldtask_world_task_npctxt_122", + "key": "taskcond_rdtask_condi_npctxt_122", "text": "搜集图鉴3个" }, "npc": 10180, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_122", + "key": "taskcond_rdtask_condi_completetasktxt_122", "text": "搜集图鉴3个" }, "completetask": [ 700030 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_122", + "key": "taskcond_rdtask_condi_deliver_npctxt_122", "text": "搜集图鉴3个" }, "deliver_npc": 0, @@ -5387,27 +5387,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_123", + "key": "taskcond_rdtask_condi_task_Tname_123", "text": "搜集图鉴6个" }, "task_name": { - "key": "worldtask_world_task_task_name_123", + "key": "taskcond_rdtask_condi_task_name_123", "text": "搜集图鉴6个" }, "npctxt": { - "key": "worldtask_world_task_npctxt_123", + "key": "taskcond_rdtask_condi_npctxt_123", "text": "搜集图鉴6个" }, "npc": 10190, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_123", + "key": "taskcond_rdtask_condi_completetasktxt_123", "text": "搜集图鉴6个" }, "completetask": [ 700031 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_123", + "key": "taskcond_rdtask_condi_deliver_npctxt_123", "text": "搜集图鉴6个" }, "deliver_npc": 0, @@ -5431,27 +5431,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_124", + "key": "taskcond_rdtask_condi_task_Tname_124", "text": "解锁1个新图纸" }, "task_name": { - "key": "worldtask_world_task_task_name_124", + "key": "taskcond_rdtask_condi_task_name_124", "text": "解锁1个新图纸" }, "npctxt": { - "key": "worldtask_world_task_npctxt_124", + "key": "taskcond_rdtask_condi_npctxt_124", "text": "解锁1个新图纸" }, "npc": 10200, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_124", + "key": "taskcond_rdtask_condi_completetasktxt_124", "text": "解锁1个新图纸" }, "completetask": [ 700032 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_124", + "key": "taskcond_rdtask_condi_deliver_npctxt_124", "text": "解锁1个新图纸" }, "deliver_npc": 0, @@ -5475,27 +5475,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_125", + "key": "taskcond_rdtask_condi_task_Tname_125", "text": "解锁4个新图纸" }, "task_name": { - "key": "worldtask_world_task_task_name_125", + "key": "taskcond_rdtask_condi_task_name_125", "text": "解锁4个新图纸" }, "npctxt": { - "key": "worldtask_world_task_npctxt_125", + "key": "taskcond_rdtask_condi_npctxt_125", "text": "解锁4个新图纸" }, "npc": 10210, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_125", + "key": "taskcond_rdtask_condi_completetasktxt_125", "text": "解锁4个新图纸" }, "completetask": [ 700033 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_125", + "key": "taskcond_rdtask_condi_deliver_npctxt_125", "text": "解锁4个新图纸" }, "deliver_npc": 0, @@ -5519,27 +5519,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_126", + "key": "taskcond_rdtask_condi_task_Tname_126", "text": "解锁6个新图纸" }, "task_name": { - "key": "worldtask_world_task_task_name_126", + "key": "taskcond_rdtask_condi_task_name_126", "text": "解锁6个新图纸" }, "npctxt": { - "key": "worldtask_world_task_npctxt_126", + "key": "taskcond_rdtask_condi_npctxt_126", "text": "解锁6个新图纸" }, "npc": 10220, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_126", + "key": "taskcond_rdtask_condi_completetasktxt_126", "text": "解锁6个新图纸" }, "completetask": [ 700034 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_126", + "key": "taskcond_rdtask_condi_deliver_npctxt_126", "text": "解锁6个新图纸" }, "deliver_npc": 0, @@ -5563,27 +5563,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_127", + "key": "taskcond_rdtask_condi_task_Tname_127", "text": "解锁2阶段装备1个图纸" }, "task_name": { - "key": "worldtask_world_task_task_name_127", + "key": "taskcond_rdtask_condi_task_name_127", "text": "解锁2阶段装备1个图纸" }, "npctxt": { - "key": "worldtask_world_task_npctxt_127", + "key": "taskcond_rdtask_condi_npctxt_127", "text": "解锁2阶段装备1个图纸" }, "npc": 10230, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_127", + "key": "taskcond_rdtask_condi_completetasktxt_127", "text": "解锁2阶段装备1个图纸" }, "completetask": [ 700035 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_127", + "key": "taskcond_rdtask_condi_deliver_npctxt_127", "text": "解锁2阶段装备1个图纸" }, "deliver_npc": 0, @@ -5607,27 +5607,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_128", + "key": "taskcond_rdtask_condi_task_Tname_128", "text": "解锁3阶段装备1个图纸" }, "task_name": { - "key": "worldtask_world_task_task_name_128", + "key": "taskcond_rdtask_condi_task_name_128", "text": "解锁3阶段装备1个图纸" }, "npctxt": { - "key": "worldtask_world_task_npctxt_128", + "key": "taskcond_rdtask_condi_npctxt_128", "text": "解锁3阶段装备1个图纸" }, "npc": 10240, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_128", + "key": "taskcond_rdtask_condi_completetasktxt_128", "text": "解锁3阶段装备1个图纸" }, "completetask": [ 700036 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_128", + "key": "taskcond_rdtask_condi_deliver_npctxt_128", "text": "解锁3阶段装备1个图纸" }, "deliver_npc": 0, @@ -5651,27 +5651,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_129", + "key": "taskcond_rdtask_condi_task_Tname_129", "text": "解锁5阶段装备1个图纸" }, "task_name": { - "key": "worldtask_world_task_task_name_129", + "key": "taskcond_rdtask_condi_task_name_129", "text": "解锁5阶段装备1个图纸" }, "npctxt": { - "key": "worldtask_world_task_npctxt_129", + "key": "taskcond_rdtask_condi_npctxt_129", "text": "解锁5阶段装备1个图纸" }, "npc": 10250, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_129", + "key": "taskcond_rdtask_condi_completetasktxt_129", "text": "解锁5阶段装备1个图纸" }, "completetask": [ 700037 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_129", + "key": "taskcond_rdtask_condi_deliver_npctxt_129", "text": "解锁5阶段装备1个图纸" }, "deliver_npc": 0, @@ -5695,27 +5695,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_130", + "key": "taskcond_rdtask_condi_task_Tname_130", "text": "10件3星装备" }, "task_name": { - "key": "worldtask_world_task_task_name_130", + "key": "taskcond_rdtask_condi_task_name_130", "text": "10件3星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_130", + "key": "taskcond_rdtask_condi_npctxt_130", "text": "10件3星装备" }, "npc": 10260, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_130", + "key": "taskcond_rdtask_condi_completetasktxt_130", "text": "10件3星装备" }, "completetask": [ 700038 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_130", + "key": "taskcond_rdtask_condi_deliver_npctxt_130", "text": "10件3星装备" }, "deliver_npc": 0, @@ -5739,27 +5739,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_131", + "key": "taskcond_rdtask_condi_task_Tname_131", "text": "10件4星装备" }, "task_name": { - "key": "worldtask_world_task_task_name_131", + "key": "taskcond_rdtask_condi_task_name_131", "text": "10件4星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_131", + "key": "taskcond_rdtask_condi_npctxt_131", "text": "10件4星装备" }, "npc": 10310, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_131", + "key": "taskcond_rdtask_condi_completetasktxt_131", "text": "10件4星装备" }, "completetask": [ 700043 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_131", + "key": "taskcond_rdtask_condi_deliver_npctxt_131", "text": "10件4星装备" }, "deliver_npc": 0, @@ -5783,27 +5783,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_132", + "key": "taskcond_rdtask_condi_task_Tname_132", "text": "12件5星装备" }, "task_name": { - "key": "worldtask_world_task_task_name_132", + "key": "taskcond_rdtask_condi_task_name_132", "text": "12件5星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_132", + "key": "taskcond_rdtask_condi_npctxt_132", "text": "12件5星装备" }, "npc": 10360, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_132", + "key": "taskcond_rdtask_condi_completetasktxt_132", "text": "12件5星装备" }, "completetask": [ 700048 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_132", + "key": "taskcond_rdtask_condi_deliver_npctxt_132", "text": "12件5星装备" }, "deliver_npc": 0, @@ -5827,27 +5827,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_133", + "key": "taskcond_rdtask_condi_task_Tname_133", "text": "指定武器副本BOSS难度3" }, "task_name": { - "key": "worldtask_world_task_task_name_133", + "key": "taskcond_rdtask_condi_task_name_133", "text": "指定武器副本BOSS难度3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_133", + "key": "taskcond_rdtask_condi_npctxt_133", "text": "指定武器副本BOSS难度3" }, "npc": 10270, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_133", + "key": "taskcond_rdtask_condi_completetasktxt_133", "text": "指定武器副本BOSS难度3" }, "completetask": [ 700039 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_133", + "key": "taskcond_rdtask_condi_deliver_npctxt_133", "text": "指定武器副本BOSS难度3" }, "deliver_npc": 0, @@ -5871,27 +5871,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_134", + "key": "taskcond_rdtask_condi_task_Tname_134", "text": "在装备副本使用好友助战1次" }, "task_name": { - "key": "worldtask_world_task_task_name_134", + "key": "taskcond_rdtask_condi_task_name_134", "text": "在装备副本使用好友助战1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_134", + "key": "taskcond_rdtask_condi_npctxt_134", "text": "在装备副本使用好友助战1次" }, "npc": 10280, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_134", + "key": "taskcond_rdtask_condi_completetasktxt_134", "text": "在装备副本使用好友助战1次" }, "completetask": [ 700040 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_134", + "key": "taskcond_rdtask_condi_deliver_npctxt_134", "text": "在装备副本使用好友助战1次" }, "deliver_npc": 0, @@ -5915,27 +5915,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_135", + "key": "taskcond_rdtask_condi_task_Tname_135", "text": "指定A套装强化6" }, "task_name": { - "key": "worldtask_world_task_task_name_135", + "key": "taskcond_rdtask_condi_task_name_135", "text": "指定A套装强化6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_135", + "key": "taskcond_rdtask_condi_npctxt_135", "text": "指定A套装强化6" }, "npc": 10290, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_135", + "key": "taskcond_rdtask_condi_completetasktxt_135", "text": "指定A套装强化6" }, "completetask": [ 700041 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_135", + "key": "taskcond_rdtask_condi_deliver_npctxt_135", "text": "指定A套装强化6" }, "deliver_npc": 0, @@ -5959,27 +5959,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_136", + "key": "taskcond_rdtask_condi_task_Tname_136", "text": "指定B套装强化6" }, "task_name": { - "key": "worldtask_world_task_task_name_136", + "key": "taskcond_rdtask_condi_task_name_136", "text": "指定B套装强化6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_136", + "key": "taskcond_rdtask_condi_npctxt_136", "text": "指定B套装强化6" }, "npc": 10300, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_136", + "key": "taskcond_rdtask_condi_completetasktxt_136", "text": "指定B套装强化6" }, "completetask": [ 700042 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_136", + "key": "taskcond_rdtask_condi_deliver_npctxt_136", "text": "指定B套装强化6" }, "deliver_npc": 0, @@ -6003,27 +6003,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_137", + "key": "taskcond_rdtask_condi_task_Tname_137", "text": "指定武器副本BOSS难度6" }, "task_name": { - "key": "worldtask_world_task_task_name_137", + "key": "taskcond_rdtask_condi_task_name_137", "text": "指定武器副本BOSS难度6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_137", + "key": "taskcond_rdtask_condi_npctxt_137", "text": "指定武器副本BOSS难度6" }, "npc": 10320, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_137", + "key": "taskcond_rdtask_condi_completetasktxt_137", "text": "指定武器副本BOSS难度6" }, "completetask": [ 700044 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_137", + "key": "taskcond_rdtask_condi_deliver_npctxt_137", "text": "指定武器副本BOSS难度6" }, "deliver_npc": 0, @@ -6047,27 +6047,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_138", + "key": "taskcond_rdtask_condi_task_Tname_138", "text": "指定饰品副本BOSS难度5" }, "task_name": { - "key": "worldtask_world_task_task_name_138", + "key": "taskcond_rdtask_condi_task_name_138", "text": "指定饰品副本BOSS难度5" }, "npctxt": { - "key": "worldtask_world_task_npctxt_138", + "key": "taskcond_rdtask_condi_npctxt_138", "text": "指定饰品副本BOSS难度5" }, "npc": 10330, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_138", + "key": "taskcond_rdtask_condi_completetasktxt_138", "text": "指定饰品副本BOSS难度5" }, "completetask": [ 700045 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_138", + "key": "taskcond_rdtask_condi_deliver_npctxt_138", "text": "指定饰品副本BOSS难度5" }, "deliver_npc": 0, @@ -6091,27 +6091,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_139", + "key": "taskcond_rdtask_condi_task_Tname_139", "text": "指定武器副本BOSS难度7" }, "task_name": { - "key": "worldtask_world_task_task_name_139", + "key": "taskcond_rdtask_condi_task_name_139", "text": "指定武器副本BOSS难度7" }, "npctxt": { - "key": "worldtask_world_task_npctxt_139", + "key": "taskcond_rdtask_condi_npctxt_139", "text": "指定武器副本BOSS难度7" }, "npc": 10340, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_139", + "key": "taskcond_rdtask_condi_completetasktxt_139", "text": "指定武器副本BOSS难度7" }, "completetask": [ 700046 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_139", + "key": "taskcond_rdtask_condi_deliver_npctxt_139", "text": "指定武器副本BOSS难度7" }, "deliver_npc": 0, @@ -6135,27 +6135,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_140", + "key": "taskcond_rdtask_condi_task_Tname_140", "text": "指定饰品副本BOSS难度6" }, "task_name": { - "key": "worldtask_world_task_task_name_140", + "key": "taskcond_rdtask_condi_task_name_140", "text": "指定饰品副本BOSS难度6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_140", + "key": "taskcond_rdtask_condi_npctxt_140", "text": "指定饰品副本BOSS难度6" }, "npc": 10350, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_140", + "key": "taskcond_rdtask_condi_completetasktxt_140", "text": "指定饰品副本BOSS难度6" }, "completetask": [ 700047 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_140", + "key": "taskcond_rdtask_condi_deliver_npctxt_140", "text": "指定饰品副本BOSS难度6" }, "deliver_npc": 0, @@ -6179,27 +6179,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_141", + "key": "taskcond_rdtask_condi_task_Tname_141", "text": "指定武器BOSS难度8" }, "task_name": { - "key": "worldtask_world_task_task_name_141", + "key": "taskcond_rdtask_condi_task_name_141", "text": "指定武器BOSS难度8" }, "npctxt": { - "key": "worldtask_world_task_npctxt_141", + "key": "taskcond_rdtask_condi_npctxt_141", "text": "指定武器BOSS难度8" }, "npc": 10370, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_141", + "key": "taskcond_rdtask_condi_completetasktxt_141", "text": "指定武器BOSS难度8" }, "completetask": [ 700049 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_141", + "key": "taskcond_rdtask_condi_deliver_npctxt_141", "text": "指定武器BOSS难度8" }, "deliver_npc": 0, @@ -6223,27 +6223,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_142", + "key": "taskcond_rdtask_condi_task_Tname_142", "text": "指定饰品BOSS难度7" }, "task_name": { - "key": "worldtask_world_task_task_name_142", + "key": "taskcond_rdtask_condi_task_name_142", "text": "指定饰品BOSS难度7" }, "npctxt": { - "key": "worldtask_world_task_npctxt_142", + "key": "taskcond_rdtask_condi_npctxt_142", "text": "指定饰品BOSS难度7" }, "npc": 10380, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_142", + "key": "taskcond_rdtask_condi_completetasktxt_142", "text": "指定饰品BOSS难度7" }, "completetask": [ 700050 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_142", + "key": "taskcond_rdtask_condi_deliver_npctxt_142", "text": "指定饰品BOSS难度7" }, "deliver_npc": 0, @@ -6267,27 +6267,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_143", + "key": "taskcond_rdtask_condi_task_Tname_143", "text": "3件6星装备" }, "task_name": { - "key": "worldtask_world_task_task_name_143", + "key": "taskcond_rdtask_condi_task_name_143", "text": "3件6星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_143", + "key": "taskcond_rdtask_condi_npctxt_143", "text": "3件6星装备" }, "npc": 10390, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_143", + "key": "taskcond_rdtask_condi_completetasktxt_143", "text": "3件6星装备" }, "completetask": [ 700052 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_143", + "key": "taskcond_rdtask_condi_deliver_npctxt_143", "text": "3件6星装备" }, "deliver_npc": 0, @@ -6311,27 +6311,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_144", + "key": "taskcond_rdtask_condi_task_Tname_144", "text": "8件6星装备" }, "task_name": { - "key": "worldtask_world_task_task_name_144", + "key": "taskcond_rdtask_condi_task_name_144", "text": "8件6星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_144", + "key": "taskcond_rdtask_condi_npctxt_144", "text": "8件6星装备" }, "npc": 10420, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_144", + "key": "taskcond_rdtask_condi_completetasktxt_144", "text": "8件6星装备" }, "completetask": [ 700056 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_144", + "key": "taskcond_rdtask_condi_deliver_npctxt_144", "text": "8件6星装备" }, "deliver_npc": 0, @@ -6355,27 +6355,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_145", + "key": "taskcond_rdtask_condi_task_Tname_145", "text": "15件6星装备" }, "task_name": { - "key": "worldtask_world_task_task_name_145", + "key": "taskcond_rdtask_condi_task_name_145", "text": "15件6星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_145", + "key": "taskcond_rdtask_condi_npctxt_145", "text": "15件6星装备" }, "npc": 10450, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_145", + "key": "taskcond_rdtask_condi_completetasktxt_145", "text": "15件6星装备" }, "completetask": [ 700060 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_145", + "key": "taskcond_rdtask_condi_deliver_npctxt_145", "text": "15件6星装备" }, "deliver_npc": 0, @@ -6399,27 +6399,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_146", + "key": "taskcond_rdtask_condi_task_Tname_146", "text": "30件6星装备" }, "task_name": { - "key": "worldtask_world_task_task_name_146", + "key": "taskcond_rdtask_condi_task_name_146", "text": "30件6星装备" }, "npctxt": { - "key": "worldtask_world_task_npctxt_146", + "key": "taskcond_rdtask_condi_npctxt_146", "text": "30件6星装备" }, "npc": 10480, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_146", + "key": "taskcond_rdtask_condi_completetasktxt_146", "text": "30件6星装备" }, "completetask": [ 700064 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_146", + "key": "taskcond_rdtask_condi_deliver_npctxt_146", "text": "30件6星装备" }, "deliver_npc": 0, @@ -6443,27 +6443,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_147", + "key": "taskcond_rdtask_condi_task_Tname_147", "text": "A装备副本难度9" }, "task_name": { - "key": "worldtask_world_task_task_name_147", + "key": "taskcond_rdtask_condi_task_name_147", "text": "A装备副本难度9" }, "npctxt": { - "key": "worldtask_world_task_npctxt_147", + "key": "taskcond_rdtask_condi_npctxt_147", "text": "A装备副本难度9" }, "npc": 10400, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_147", + "key": "taskcond_rdtask_condi_completetasktxt_147", "text": "A装备副本难度9" }, "completetask": [ 700053 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_147", + "key": "taskcond_rdtask_condi_deliver_npctxt_147", "text": "A装备副本难度9" }, "deliver_npc": 0, @@ -6487,27 +6487,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_148", + "key": "taskcond_rdtask_condi_task_Tname_148", "text": "B装备副本难度8" }, "task_name": { - "key": "worldtask_world_task_task_name_148", + "key": "taskcond_rdtask_condi_task_name_148", "text": "B装备副本难度8" }, "npctxt": { - "key": "worldtask_world_task_npctxt_148", + "key": "taskcond_rdtask_condi_npctxt_148", "text": "B装备副本难度8" }, "npc": 10410, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_148", + "key": "taskcond_rdtask_condi_completetasktxt_148", "text": "B装备副本难度8" }, "completetask": [ 700054 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_148", + "key": "taskcond_rdtask_condi_deliver_npctxt_148", "text": "B装备副本难度8" }, "deliver_npc": 0, @@ -6531,27 +6531,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_149", + "key": "taskcond_rdtask_condi_task_Tname_149", "text": "A装备副本难度10" }, "task_name": { - "key": "worldtask_world_task_task_name_149", + "key": "taskcond_rdtask_condi_task_name_149", "text": "A装备副本难度10" }, "npctxt": { - "key": "worldtask_world_task_npctxt_149", + "key": "taskcond_rdtask_condi_npctxt_149", "text": "A装备副本难度10" }, "npc": 10430, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_149", + "key": "taskcond_rdtask_condi_completetasktxt_149", "text": "A装备副本难度10" }, "completetask": [ 700057 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_149", + "key": "taskcond_rdtask_condi_deliver_npctxt_149", "text": "A装备副本难度10" }, "deliver_npc": 0, @@ -6575,27 +6575,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_150", + "key": "taskcond_rdtask_condi_task_Tname_150", "text": "B装备副本难度9" }, "task_name": { - "key": "worldtask_world_task_task_name_150", + "key": "taskcond_rdtask_condi_task_name_150", "text": "B装备副本难度9" }, "npctxt": { - "key": "worldtask_world_task_npctxt_150", + "key": "taskcond_rdtask_condi_npctxt_150", "text": "B装备副本难度9" }, "npc": 10440, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_150", + "key": "taskcond_rdtask_condi_completetasktxt_150", "text": "B装备副本难度9" }, "completetask": [ 700058 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_150", + "key": "taskcond_rdtask_condi_deliver_npctxt_150", "text": "B装备副本难度9" }, "deliver_npc": 0, @@ -6619,27 +6619,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_151", + "key": "taskcond_rdtask_condi_task_Tname_151", "text": "自动战斗装备副本难度5" }, "task_name": { - "key": "worldtask_world_task_task_name_151", + "key": "taskcond_rdtask_condi_task_name_151", "text": "自动战斗装备副本难度5" }, "npctxt": { - "key": "worldtask_world_task_npctxt_151", + "key": "taskcond_rdtask_condi_npctxt_151", "text": "自动战斗装备副本难度5" }, "npc": 10460, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_151", + "key": "taskcond_rdtask_condi_completetasktxt_151", "text": "自动战斗装备副本难度5" }, "completetask": [ 700061 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_151", + "key": "taskcond_rdtask_condi_deliver_npctxt_151", "text": "自动战斗装备副本难度5" }, "deliver_npc": 0, @@ -6663,27 +6663,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_152", + "key": "taskcond_rdtask_condi_task_Tname_152", "text": "自动战斗装备副本难度10" }, "task_name": { - "key": "worldtask_world_task_task_name_152", + "key": "taskcond_rdtask_condi_task_name_152", "text": "自动战斗装备副本难度10" }, "npctxt": { - "key": "worldtask_world_task_npctxt_152", + "key": "taskcond_rdtask_condi_npctxt_152", "text": "自动战斗装备副本难度10" }, "npc": 10470, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_152", + "key": "taskcond_rdtask_condi_completetasktxt_152", "text": "自动战斗装备副本难度10" }, "completetask": [ 700062 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_152", + "key": "taskcond_rdtask_condi_deliver_npctxt_152", "text": "自动战斗装备副本难度10" }, "deliver_npc": 0, @@ -6707,27 +6707,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_153", + "key": "taskcond_rdtask_condi_task_Tname_153", "text": "解锁木桩1根" }, "task_name": { - "key": "worldtask_world_task_task_name_153", + "key": "taskcond_rdtask_condi_task_name_153", "text": "解锁木桩1根" }, "npctxt": { - "key": "worldtask_world_task_npctxt_153", + "key": "taskcond_rdtask_condi_npctxt_153", "text": "解锁木桩1根" }, "npc": 10570, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_153", + "key": "taskcond_rdtask_condi_completetasktxt_153", "text": "解锁木桩1根" }, "completetask": [ 700065 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_153", + "key": "taskcond_rdtask_condi_deliver_npctxt_153", "text": "解锁木桩1根" }, "deliver_npc": 0, @@ -6751,27 +6751,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_154", + "key": "taskcond_rdtask_condi_task_Tname_154", "text": "解锁木桩2根" }, "task_name": { - "key": "worldtask_world_task_task_name_154", + "key": "taskcond_rdtask_condi_task_name_154", "text": "解锁木桩2根" }, "npctxt": { - "key": "worldtask_world_task_npctxt_154", + "key": "taskcond_rdtask_condi_npctxt_154", "text": "解锁木桩2根" }, "npc": 10580, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_154", + "key": "taskcond_rdtask_condi_completetasktxt_154", "text": "解锁木桩2根" }, "completetask": [ 700066 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_154", + "key": "taskcond_rdtask_condi_deliver_npctxt_154", "text": "解锁木桩2根" }, "deliver_npc": 0, @@ -6795,27 +6795,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_155", + "key": "taskcond_rdtask_condi_task_Tname_155", "text": "解锁木桩3根" }, "task_name": { - "key": "worldtask_world_task_task_name_155", + "key": "taskcond_rdtask_condi_task_name_155", "text": "解锁木桩3根" }, "npctxt": { - "key": "worldtask_world_task_npctxt_155", + "key": "taskcond_rdtask_condi_npctxt_155", "text": "解锁木桩3根" }, "npc": 10590, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_155", + "key": "taskcond_rdtask_condi_completetasktxt_155", "text": "解锁木桩3根" }, "completetask": [ 700067 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_155", + "key": "taskcond_rdtask_condi_deliver_npctxt_155", "text": "解锁木桩3根" }, "deliver_npc": 0, @@ -6839,27 +6839,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_156", + "key": "taskcond_rdtask_condi_task_Tname_156", "text": "抵御踢馆2次" }, "task_name": { - "key": "worldtask_world_task_task_name_156", + "key": "taskcond_rdtask_condi_task_name_156", "text": "抵御踢馆2次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_156", + "key": "taskcond_rdtask_condi_npctxt_156", "text": "抵御踢馆2次" }, "npc": 10600, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_156", + "key": "taskcond_rdtask_condi_completetasktxt_156", "text": "抵御踢馆2次" }, "completetask": [ 700068 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_156", + "key": "taskcond_rdtask_condi_deliver_npctxt_156", "text": "抵御踢馆2次" }, "deliver_npc": 0, @@ -6883,27 +6883,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_157", + "key": "taskcond_rdtask_condi_task_Tname_157", "text": "抵御踢馆4次" }, "task_name": { - "key": "worldtask_world_task_task_name_157", + "key": "taskcond_rdtask_condi_task_name_157", "text": "抵御踢馆4次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_157", + "key": "taskcond_rdtask_condi_npctxt_157", "text": "抵御踢馆4次" }, "npc": 10610, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_157", + "key": "taskcond_rdtask_condi_completetasktxt_157", "text": "抵御踢馆4次" }, "completetask": [ 700069 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_157", + "key": "taskcond_rdtask_condi_deliver_npctxt_157", "text": "抵御踢馆4次" }, "deliver_npc": 0, @@ -6927,27 +6927,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_158", + "key": "taskcond_rdtask_condi_task_Tname_158", "text": "抵御踢馆6次" }, "task_name": { - "key": "worldtask_world_task_task_name_158", + "key": "taskcond_rdtask_condi_task_name_158", "text": "抵御踢馆6次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_158", + "key": "taskcond_rdtask_condi_npctxt_158", "text": "抵御踢馆6次" }, "npc": 10620, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_158", + "key": "taskcond_rdtask_condi_completetasktxt_158", "text": "抵御踢馆6次" }, "completetask": [ 700070 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_158", + "key": "taskcond_rdtask_condi_deliver_npctxt_158", "text": "抵御踢馆6次" }, "deliver_npc": 0, @@ -6971,27 +6971,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_159", + "key": "taskcond_rdtask_condi_task_Tname_159", "text": "去好友武馆踢馆1次" }, "task_name": { - "key": "worldtask_world_task_task_name_159", + "key": "taskcond_rdtask_condi_task_name_159", "text": "去好友武馆踢馆1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_159", + "key": "taskcond_rdtask_condi_npctxt_159", "text": "去好友武馆踢馆1次" }, "npc": 10630, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_159", + "key": "taskcond_rdtask_condi_completetasktxt_159", "text": "去好友武馆踢馆1次" }, "completetask": [ 700071 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_159", + "key": "taskcond_rdtask_condi_deliver_npctxt_159", "text": "去好友武馆踢馆1次" }, "deliver_npc": 0, @@ -7015,27 +7015,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_160", + "key": "taskcond_rdtask_condi_task_Tname_160", "text": "使用好友武馆木桩1次" }, "task_name": { - "key": "worldtask_world_task_task_name_160", + "key": "taskcond_rdtask_condi_task_name_160", "text": "使用好友武馆木桩1次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_160", + "key": "taskcond_rdtask_condi_npctxt_160", "text": "使用好友武馆木桩1次" }, "npc": 10640, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_160", + "key": "taskcond_rdtask_condi_completetasktxt_160", "text": "使用好友武馆木桩1次" }, "completetask": [ 700072 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_160", + "key": "taskcond_rdtask_condi_deliver_npctxt_160", "text": "使用好友武馆木桩1次" }, "deliver_npc": 0, @@ -7059,27 +7059,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_161", + "key": "taskcond_rdtask_condi_task_Tname_161", "text": "完成一次每日1健" }, "task_name": { - "key": "worldtask_world_task_task_name_161", + "key": "taskcond_rdtask_condi_task_name_161", "text": "完成一次每日1健" }, "npctxt": { - "key": "worldtask_world_task_npctxt_161", + "key": "taskcond_rdtask_condi_npctxt_161", "text": "完成一次每日1健" }, "npc": 10650, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_161", + "key": "taskcond_rdtask_condi_completetasktxt_161", "text": "完成一次每日1健" }, "completetask": [ 700073 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_161", + "key": "taskcond_rdtask_condi_deliver_npctxt_161", "text": "完成一次每日1健" }, "deliver_npc": 0, @@ -7103,27 +7103,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_162", + "key": "taskcond_rdtask_condi_task_Tname_162", "text": "完成一次每日3健" }, "task_name": { - "key": "worldtask_world_task_task_name_162", + "key": "taskcond_rdtask_condi_task_name_162", "text": "完成一次每日3健" }, "npctxt": { - "key": "worldtask_world_task_npctxt_162", + "key": "taskcond_rdtask_condi_npctxt_162", "text": "完成一次每日3健" }, "npc": 10660, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_162", + "key": "taskcond_rdtask_condi_completetasktxt_162", "text": "完成一次每日3健" }, "completetask": [ 700074 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_162", + "key": "taskcond_rdtask_condi_deliver_npctxt_162", "text": "完成一次每日3健" }, "deliver_npc": 0, @@ -7147,27 +7147,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_163", + "key": "taskcond_rdtask_condi_task_Tname_163", "text": "完成一次每日5健" }, "task_name": { - "key": "worldtask_world_task_task_name_163", + "key": "taskcond_rdtask_condi_task_name_163", "text": "完成一次每日5健" }, "npctxt": { - "key": "worldtask_world_task_npctxt_163", + "key": "taskcond_rdtask_condi_npctxt_163", "text": "完成一次每日5健" }, "npc": 10670, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_163", + "key": "taskcond_rdtask_condi_completetasktxt_163", "text": "完成一次每日5健" }, "completetask": [ 700075 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_163", + "key": "taskcond_rdtask_condi_deliver_npctxt_163", "text": "完成一次每日5健" }, "deliver_npc": 0, @@ -7191,27 +7191,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_164", + "key": "taskcond_rdtask_condi_task_Tname_164", "text": "经验副本难度2" }, "task_name": { - "key": "worldtask_world_task_task_name_164", + "key": "taskcond_rdtask_condi_task_name_164", "text": "经验副本难度2" }, "npctxt": { - "key": "worldtask_world_task_npctxt_164", + "key": "taskcond_rdtask_condi_npctxt_164", "text": "经验副本难度2" }, "npc": 10680, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_164", + "key": "taskcond_rdtask_condi_completetasktxt_164", "text": "经验副本难度2" }, "completetask": [ 700076 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_164", + "key": "taskcond_rdtask_condi_deliver_npctxt_164", "text": "经验副本难度2" }, "deliver_npc": 0, @@ -7235,27 +7235,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_165", + "key": "taskcond_rdtask_condi_task_Tname_165", "text": "经验副本难度3" }, "task_name": { - "key": "worldtask_world_task_task_name_165", + "key": "taskcond_rdtask_condi_task_name_165", "text": "经验副本难度3" }, "npctxt": { - "key": "worldtask_world_task_npctxt_165", + "key": "taskcond_rdtask_condi_npctxt_165", "text": "经验副本难度3" }, "npc": 10690, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_165", + "key": "taskcond_rdtask_condi_completetasktxt_165", "text": "经验副本难度3" }, "completetask": [ 700077 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_165", + "key": "taskcond_rdtask_condi_deliver_npctxt_165", "text": "经验副本难度3" }, "deliver_npc": 0, @@ -7279,27 +7279,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_166", + "key": "taskcond_rdtask_condi_task_Tname_166", "text": "经验副本难度4" }, "task_name": { - "key": "worldtask_world_task_task_name_166", + "key": "taskcond_rdtask_condi_task_name_166", "text": "经验副本难度4" }, "npctxt": { - "key": "worldtask_world_task_npctxt_166", + "key": "taskcond_rdtask_condi_npctxt_166", "text": "经验副本难度4" }, "npc": 10750, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_166", + "key": "taskcond_rdtask_condi_completetasktxt_166", "text": "经验副本难度4" }, "completetask": [ 700083 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_166", + "key": "taskcond_rdtask_condi_deliver_npctxt_166", "text": "经验副本难度4" }, "deliver_npc": 0, @@ -7323,27 +7323,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_167", + "key": "taskcond_rdtask_condi_task_Tname_167", "text": "经验副本难度5" }, "task_name": { - "key": "worldtask_world_task_task_name_167", + "key": "taskcond_rdtask_condi_task_name_167", "text": "经验副本难度5" }, "npctxt": { - "key": "worldtask_world_task_npctxt_167", + "key": "taskcond_rdtask_condi_npctxt_167", "text": "经验副本难度5" }, "npc": 10760, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_167", + "key": "taskcond_rdtask_condi_completetasktxt_167", "text": "经验副本难度5" }, "completetask": [ 700084 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_167", + "key": "taskcond_rdtask_condi_deliver_npctxt_167", "text": "经验副本难度5" }, "deliver_npc": 0, @@ -7367,27 +7367,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_168", + "key": "taskcond_rdtask_condi_task_Tname_168", "text": "经验副本难度6" }, "task_name": { - "key": "worldtask_world_task_task_name_168", + "key": "taskcond_rdtask_condi_task_name_168", "text": "经验副本难度6" }, "npctxt": { - "key": "worldtask_world_task_npctxt_168", + "key": "taskcond_rdtask_condi_npctxt_168", "text": "经验副本难度6" }, "npc": 10780, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_168", + "key": "taskcond_rdtask_condi_completetasktxt_168", "text": "经验副本难度6" }, "completetask": [ 700086 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_168", + "key": "taskcond_rdtask_condi_deliver_npctxt_168", "text": "经验副本难度6" }, "deliver_npc": 0, @@ -7411,27 +7411,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_169", + "key": "taskcond_rdtask_condi_task_Tname_169", "text": "经验副本难度7" }, "task_name": { - "key": "worldtask_world_task_task_name_169", + "key": "taskcond_rdtask_condi_task_name_169", "text": "经验副本难度7" }, "npctxt": { - "key": "worldtask_world_task_npctxt_169", + "key": "taskcond_rdtask_condi_npctxt_169", "text": "经验副本难度7" }, "npc": 10800, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_169", + "key": "taskcond_rdtask_condi_completetasktxt_169", "text": "经验副本难度7" }, "completetask": [ 700088 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_169", + "key": "taskcond_rdtask_condi_deliver_npctxt_169", "text": "经验副本难度7" }, "deliver_npc": 0, @@ -7455,27 +7455,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_170", + "key": "taskcond_rdtask_condi_task_Tname_170", "text": "经验副本难度8" }, "task_name": { - "key": "worldtask_world_task_task_name_170", + "key": "taskcond_rdtask_condi_task_name_170", "text": "经验副本难度8" }, "npctxt": { - "key": "worldtask_world_task_npctxt_170", + "key": "taskcond_rdtask_condi_npctxt_170", "text": "经验副本难度8" }, "npc": 10810, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_170", + "key": "taskcond_rdtask_condi_completetasktxt_170", "text": "经验副本难度8" }, "completetask": [ 700089 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_170", + "key": "taskcond_rdtask_condi_deliver_npctxt_170", "text": "经验副本难度8" }, "deliver_npc": 0, @@ -7499,27 +7499,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_171", + "key": "taskcond_rdtask_condi_task_Tname_171", "text": "经验副本难度9" }, "task_name": { - "key": "worldtask_world_task_task_name_171", + "key": "taskcond_rdtask_condi_task_name_171", "text": "经验副本难度9" }, "npctxt": { - "key": "worldtask_world_task_npctxt_171", + "key": "taskcond_rdtask_condi_npctxt_171", "text": "经验副本难度9" }, "npc": 10820, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_171", + "key": "taskcond_rdtask_condi_completetasktxt_171", "text": "经验副本难度9" }, "completetask": [ 700090 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_171", + "key": "taskcond_rdtask_condi_deliver_npctxt_171", "text": "经验副本难度9" }, "deliver_npc": 0, @@ -7543,27 +7543,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_172", + "key": "taskcond_rdtask_condi_task_Tname_172", "text": "经验副本难度10" }, "task_name": { - "key": "worldtask_world_task_task_name_172", + "key": "taskcond_rdtask_condi_task_name_172", "text": "经验副本难度10" }, "npctxt": { - "key": "worldtask_world_task_npctxt_172", + "key": "taskcond_rdtask_condi_npctxt_172", "text": "经验副本难度10" }, "npc": 10830, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_172", + "key": "taskcond_rdtask_condi_completetasktxt_172", "text": "经验副本难度10" }, "completetask": [ 700091 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_172", + "key": "taskcond_rdtask_condi_deliver_npctxt_172", "text": "经验副本难度10" }, "deliver_npc": 0, @@ -7587,27 +7587,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_173", + "key": "taskcond_rdtask_condi_task_Tname_173", "text": "5名25级英雄" }, "task_name": { - "key": "worldtask_world_task_task_name_173", + "key": "taskcond_rdtask_condi_task_name_173", "text": "5名25级英雄" }, "npctxt": { - "key": "worldtask_world_task_npctxt_173", + "key": "taskcond_rdtask_condi_npctxt_173", "text": "5名25级英雄" }, "npc": 10700, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_173", + "key": "taskcond_rdtask_condi_completetasktxt_173", "text": "5名25级英雄" }, "completetask": [ 700078 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_173", + "key": "taskcond_rdtask_condi_deliver_npctxt_173", "text": "5名25级英雄" }, "deliver_npc": 0, @@ -7631,27 +7631,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_174", + "key": "taskcond_rdtask_condi_task_Tname_174", "text": "5名40级英雄" }, "task_name": { - "key": "worldtask_world_task_task_name_174", + "key": "taskcond_rdtask_condi_task_name_174", "text": "5名40级英雄" }, "npctxt": { - "key": "worldtask_world_task_npctxt_174", + "key": "taskcond_rdtask_condi_npctxt_174", "text": "5名40级英雄" }, "npc": 10710, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_174", + "key": "taskcond_rdtask_condi_completetasktxt_174", "text": "5名40级英雄" }, "completetask": [ 700079 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_174", + "key": "taskcond_rdtask_condi_deliver_npctxt_174", "text": "5名40级英雄" }, "deliver_npc": 0, @@ -7675,27 +7675,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_175", + "key": "taskcond_rdtask_condi_task_Tname_175", "text": "5名50级英雄" }, "task_name": { - "key": "worldtask_world_task_task_name_175", + "key": "taskcond_rdtask_condi_task_name_175", "text": "5名50级英雄" }, "npctxt": { - "key": "worldtask_world_task_npctxt_175", + "key": "taskcond_rdtask_condi_npctxt_175", "text": "5名50级英雄" }, "npc": 10720, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_175", + "key": "taskcond_rdtask_condi_completetasktxt_175", "text": "5名50级英雄" }, "completetask": [ 700080 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_175", + "key": "taskcond_rdtask_condi_deliver_npctxt_175", "text": "5名50级英雄" }, "deliver_npc": 0, @@ -7719,27 +7719,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_176", + "key": "taskcond_rdtask_condi_task_Tname_176", "text": "10名50级英雄" }, "task_name": { - "key": "worldtask_world_task_task_name_176", + "key": "taskcond_rdtask_condi_task_name_176", "text": "10名50级英雄" }, "npctxt": { - "key": "worldtask_world_task_npctxt_176", + "key": "taskcond_rdtask_condi_npctxt_176", "text": "10名50级英雄" }, "npc": 10790, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_176", + "key": "taskcond_rdtask_condi_completetasktxt_176", "text": "10名50级英雄" }, "completetask": [ 700087 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_176", + "key": "taskcond_rdtask_condi_deliver_npctxt_176", "text": "10名50级英雄" }, "deliver_npc": 0, @@ -7763,27 +7763,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_177", + "key": "taskcond_rdtask_condi_task_Tname_177", "text": "武馆的派遣悬赏3次" }, "task_name": { - "key": "worldtask_world_task_task_name_177", + "key": "taskcond_rdtask_condi_task_name_177", "text": "武馆的派遣悬赏3次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_177", + "key": "taskcond_rdtask_condi_npctxt_177", "text": "武馆的派遣悬赏3次" }, "npc": 10730, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_177", + "key": "taskcond_rdtask_condi_completetasktxt_177", "text": "武馆的派遣悬赏3次" }, "completetask": [ 700081 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_177", + "key": "taskcond_rdtask_condi_deliver_npctxt_177", "text": "武馆的派遣悬赏3次" }, "deliver_npc": 0, @@ -7807,27 +7807,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_178", + "key": "taskcond_rdtask_condi_task_Tname_178", "text": "武馆的派遣悬赏8次" }, "task_name": { - "key": "worldtask_world_task_task_name_178", + "key": "taskcond_rdtask_condi_task_name_178", "text": "武馆的派遣悬赏8次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_178", + "key": "taskcond_rdtask_condi_npctxt_178", "text": "武馆的派遣悬赏8次" }, "npc": 10740, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_178", + "key": "taskcond_rdtask_condi_completetasktxt_178", "text": "武馆的派遣悬赏8次" }, "completetask": [ 700082 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_178", + "key": "taskcond_rdtask_condi_deliver_npctxt_178", "text": "武馆的派遣悬赏8次" }, "deliver_npc": 0, @@ -7851,27 +7851,27 @@ "des": 3, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_179", + "key": "taskcond_rdtask_condi_task_Tname_179", "text": "武馆的派遣悬赏10次" }, "task_name": { - "key": "worldtask_world_task_task_name_179", + "key": "taskcond_rdtask_condi_task_name_179", "text": "武馆的派遣悬赏10次" }, "npctxt": { - "key": "worldtask_world_task_npctxt_179", + "key": "taskcond_rdtask_condi_npctxt_179", "text": "武馆的派遣悬赏10次" }, "npc": 10770, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_179", + "key": "taskcond_rdtask_condi_completetasktxt_179", "text": "武馆的派遣悬赏10次" }, "completetask": [ 700085 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_179", + "key": "taskcond_rdtask_condi_deliver_npctxt_179", "text": "武馆的派遣悬赏10次" }, "deliver_npc": 0, @@ -7895,27 +7895,27 @@ "des": 1, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_180", + "key": "taskcond_rdtask_condi_task_Tname_180", "text": "魔药处" }, "task_name": { - "key": "worldtask_world_task_task_name_180", + "key": "taskcond_rdtask_condi_task_name_180", "text": "魔药处" }, "npctxt": { - "key": "worldtask_world_task_npctxt_180", + "key": "taskcond_rdtask_condi_npctxt_180", "text": "和菲欧娜聊聊" }, "npc": 80010, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_180", + "key": "taskcond_rdtask_condi_completetasktxt_180", "text": "和菲欧娜聊聊" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_180", + "key": "taskcond_rdtask_condi_deliver_npctxt_180", "text": "和菲欧娜聊聊" }, "deliver_npc": 0, @@ -7939,27 +7939,27 @@ "des": 4, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_181", + "key": "taskcond_rdtask_condi_task_Tname_181", "text": "烹饪处" }, "task_name": { - "key": "worldtask_world_task_task_name_181", + "key": "taskcond_rdtask_condi_task_name_181", "text": "烹饪处" }, "npctxt": { - "key": "worldtask_world_task_npctxt_181", + "key": "taskcond_rdtask_condi_npctxt_181", "text": "和平先生聊聊" }, "npc": 80020, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_181", + "key": "taskcond_rdtask_condi_completetasktxt_181", "text": "和平先生聊聊" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_181", + "key": "taskcond_rdtask_condi_deliver_npctxt_181", "text": "和平先生聊聊" }, "deliver_npc": 0, @@ -7983,27 +7983,27 @@ "des": 5, "icon": "", "task_Tname": { - "key": "worldtask_world_task_task_Tname_182", + "key": "taskcond_rdtask_condi_task_Tname_182", "text": "商队测试" }, "task_name": { - "key": "worldtask_world_task_task_name_182", + "key": "taskcond_rdtask_condi_task_name_182", "text": "商队测试" }, "npctxt": { - "key": "worldtask_world_task_npctxt_182", + "key": "taskcond_rdtask_condi_npctxt_182", "text": "商队测试" }, "npc": 90010, "completetasktxt": { - "key": "worldtask_world_task_completetasktxt_182", + "key": "taskcond_rdtask_condi_completetasktxt_182", "text": "商队测试A" }, "completetask": [ 0 ], "deliver_npctxt": { - "key": "worldtask_world_task_deliver_npctxt_182", + "key": "taskcond_rdtask_condi_deliver_npctxt_182", "text": "商队测试A" }, "deliver_npc": 0, diff --git a/modules/arena/api_buy.go b/modules/arena/api_buy.go index a938e38e6..89c348983 100644 --- a/modules/arena/api_buy.go +++ b/modules/arena/api_buy.go @@ -21,7 +21,7 @@ func (this *apiComp) Buy(session comm.IUserSession, req *pb.ArenaBuyReq) (code p // global *cfg.GameGlobalData info *pb.DBArenaUser need []*cfg.Gameatn - maxbuy, vipbuy int + maxbuy, vipbuy int32 err error ) if code = this.BuyCheck(session, req); code != pb.ErrorCode_Success { @@ -33,14 +33,14 @@ func (this *apiComp) Buy(session comm.IUserSession, req *pb.ArenaBuyReq) (code p } this.module.modelArena.recoverTicket(session, info) - if maxbuy, err = this.module.configure.GetchallengeDataCount(); err != nil { + if maxbuy, err = this.module.ModuleTools.GetPriceGroupLen(comm.ArenaBuyType); err != nil { code = pb.ErrorCode_ConfigNoFound return } - vipbuy = int(this.module.privilege.GetCountByPrivilegeId(session.GetUserId(), comm.PrivilegeType5)) + vipbuy = this.module.privilege.GetCountByPrivilegeId(session.GetUserId(), comm.PrivilegeType5) need = make([]*cfg.Gameatn, 0) for i := int32(0); i < req.BuyNum; i++ { - if int(info.Buynum+i+1) > maxbuy+vipbuy { + if info.Buynum+i+1 > maxbuy+vipbuy { code = pb.ErrorCode_ArenaTicketBuyUp return } diff --git a/modules/arena/configure.go b/modules/arena/configure.go index a67a7938b..a95789afb 100644 --- a/modules/arena/configure.go +++ b/modules/arena/configure.go @@ -34,7 +34,6 @@ type configureComp struct { func (this *configureComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) { this.MCompConfigure.Init(service, module, comp, options) this.module = module.(*Arena) - this.LoadConfigure(game_arenabuychallenge, cfg.NewGameArenaBuyChallenge) this.LoadConfigure(game_arenaactivereward, cfg.NewGameArenaActiveReward) configure.RegisterConfigure(game_arenarobot, cfg.NewGameArenaRobot, this.updateArenaRobot) this.LoadConfigure(game_arenarankreward, cfg.NewGameArenaRankReward) @@ -62,40 +61,6 @@ func (this *configureComp) Init(service core.IService, module core.IModule, comp return } -///获取月之秘境触购买表 -func (this *configureComp) GetchallengeDataCount() (count int, err error) { - var ( - v interface{} - ) - if v, err = this.GetConfigure(game_arenabuychallenge); err != nil { - this.module.Errorln(err) - return - } else { - count = len(v.(*cfg.GameArenaBuyChallenge).GetDataList()) - } - return -} - -///获取月之秘境触购买表 -func (this *configureComp) GetchallengeData(buynum int32) (result *cfg.GameArenaBuyChallengeData, err error) { - var ( - v interface{} - ) - if v, err = this.GetConfigure(game_arenabuychallenge); err != nil { - this.module.Errorln(err) - return - } else { - for _, v := range v.(*cfg.GameArenaBuyChallenge).GetDataList() { - if v.Num == buynum { - result = v - return - } - result = v - } - } - return -} - //查询积分段位信息 func (this *configureComp) getActiveReward(integral int32) (result *cfg.GameArenaActiveRewardData, err error) { var ( diff --git a/modules/buried/module.go b/modules/buried/module.go index 899936f54..68e71a5d1 100644 --- a/modules/buried/module.go +++ b/modules/buried/module.go @@ -1,7 +1,6 @@ package buried import ( - "fmt" "go_dreamfactory/comm" "go_dreamfactory/lego/base" "go_dreamfactory/lego/core" @@ -146,7 +145,7 @@ func (this *Buried) updateAndCheckBuried(bdata *pb.DBBuried, collec *comm.Buried bitem = &pb.DBBuriedItem{ Conid: cond.Id, State: pb.BuriedItemState_Activated, - Value: 0, + Value: make([]int32, 0), Timestamp: time.Now().Unix(), } } else { @@ -158,25 +157,25 @@ func (this *Buried) updateAndCheckBuried(bdata *pb.DBBuried, collec *comm.Buried return } - switch cond.Vtype { //数据接入方式 - case overlay: //累加数据 - bitem.Value += collec.Value - case cover: - bitem.Value = collec.Value - case query: - switch collec.Btype { - case comm.Rtype1: - default: - err = fmt.Errorf("未实现的数据查询类型 埋点类型:%d", collec.Btype) - return - } + // switch cond.Vtype { //数据接入方式 + // case overlay: //累加数据 + // bitem.Value[0] += collec.Value + // case cover: + // bitem.Value[0] = collec.Value + // case query: + // switch collec.Btype { + // case comm.Rtype1: + // default: + // err = fmt.Errorf("未实现的数据查询类型 埋点类型:%d", collec.Btype) + // return + // } - default: - err = fmt.Errorf("未知的埋点数据处理类型:%d", cond.Vtype) - return - } + // default: + // err = fmt.Errorf("未知的埋点数据处理类型:%d", cond.Vtype) + // return + // } - if bitem.Value >= cond.Value { //完成进度 + if bitem.Value[0] >= cond.Value { //完成进度 complete = true } return diff --git a/modules/equipment/configure.go b/modules/equipment/configure.go index a4384e1ed..ca52f20bd 100644 --- a/modules/equipment/configure.go +++ b/modules/equipment/configure.go @@ -11,14 +11,14 @@ import ( ) const ( - game_equip = "game_equip.json" //装备信息表 - equip_attrlibrary = "game_equipattrlibrary.json" //装备属性配置表 - equip_intensify = "game_equipintensify.json" //装备等级消耗表 - equip_suit = "game_equipsuit.json" //装备套装表 - game_equipcompose = "game_equipscompose.json" //装备锻造 - game_equipattribute = "game_equipattribute.json" //装备技能列表 - game_equipenchanting = "game_equipenchanting.json" //装备附魔 - game_sellcoefficient = "game_sellcoefficient.json" //装备出售品质系数 + game_equip = "game_equip.json" //装备信息表 + equip_attrlibrary = "game_equipattrlibrarys.json" //装备属性配置表 + equip_intensify = "game_equipintensify.json" //装备等级消耗表 + equip_suit = "game_equipsuit.json" //装备套装表 + game_equipcompose = "game_equipscompose.json" //装备锻造 + game_equipattribute = "game_equipattribute.json" //装备技能列表 + game_equipenchanting = "game_equipenchanting.json" //装备附魔 + game_sellcoefficient = "game_sellcoefficient.json" //装备出售品质系数 ) diff --git a/modules/gateway/agent.go b/modules/gateway/agent.go index 22cb614ab..d5dcce80d 100644 --- a/modules/gateway/agent.go +++ b/modules/gateway/agent.go @@ -86,6 +86,7 @@ locp: Timestamp: configure.Now().Unix(), }) this.WriteMsg(&pb.UserMessage{ + MsgId: msg.MsgId, MainType: string(comm.ModuleGate), SubType: "heartbeat", Data: data, @@ -99,6 +100,7 @@ locp: if err = this.messageDistribution(msg); err != nil { this.gateway.Errorf("messageDistribution err:%v", err) data, _ := anypb.New(&pb.NotifyErrorNotifyPush{ + MsgId: msg.MsgId, ReqMainType: msg.MainType, ReqSubType: msg.SubType, Arg: msg.Data, @@ -106,6 +108,7 @@ locp: Err: &pb.ErrorData{Title: "用户消息处理失败!", Datastring: err.Error()}, }) err = this.WriteMsg(&pb.UserMessage{ + MsgId: msg.MsgId, MainType: comm.MainTypeNotify, SubType: comm.SubTypeErrorNotify, Data: data, @@ -116,8 +119,15 @@ locp: } else { this.gateway.Errorf("agent:%s uId:%s 密钥无效 err:%v", this.sessionId, this.uId, err) - data, _ := anypb.New(&pb.NotifyErrorNotifyPush{ReqMainType: msg.MainType, ReqSubType: msg.SubType, Code: code, Err: &pb.ErrorData{Title: "用户消息验证失败!", Datastring: err.Error()}}) + data, _ := anypb.New(&pb.NotifyErrorNotifyPush{ + MsgId: msg.MsgId, + ReqMainType: msg.MainType, + ReqSubType: msg.SubType, + Code: code, + Err: &pb.ErrorData{Title: "用户消息验证失败!", Datastring: err.Error()}, + }) if err = this.WriteMsg(&pb.UserMessage{ + MsgId: msg.MsgId, MainType: comm.MainTypeNotify, SubType: comm.SubTypeErrorNotify, Data: data, @@ -363,12 +373,14 @@ func (this *Agent) messageDistribution(msg *pb.UserMessage) (err error) { // } if reply.Code != pb.ErrorCode_Success { data, _ := anypb.New(&pb.NotifyErrorNotifyPush{ + MsgId: msg.MsgId, ReqMainType: msg.MainType, ReqSubType: msg.SubType, Arg: msg.Data, Code: pb.ErrorCode(reply.Code.Number()), Err: reply.ErrorData}) err = this.WriteMsg(&pb.UserMessage{ + MsgId: msg.MsgId, MainType: comm.MainTypeNotify, SubType: comm.SubTypeErrorNotify, Data: data, @@ -376,6 +388,9 @@ func (this *Agent) messageDistribution(msg *pb.UserMessage) (err error) { return } else { for _, v := range reply.Reply { + if v.MainType == msg.MainType && v.SubType == msg.SubType { + v.MsgId = msg.MsgId + } if err = this.WriteMsg(v); err != nil { return } diff --git a/modules/hunting/comp_configure.go b/modules/hunting/comp_configure.go index 79856c7ab..74efa10e6 100644 --- a/modules/hunting/comp_configure.go +++ b/modules/hunting/comp_configure.go @@ -11,7 +11,7 @@ import ( const ( game_huntingboss = "game_huntingboss.json" - game_challenge = "game_huntingchallenge.json" + // game_challenge = "game_huntingchallenge.json" ) ///配置管理基础组件 @@ -43,7 +43,7 @@ func (this *configureComp) Init(service core.IService, module core.IModule, comp } return }) - err = this.LoadConfigure(game_challenge, cfg.NewGameHuntingChallenge) + // err = this.LoadConfigure(game_challenge, cfg.NewGameHuntingChallenge) return } @@ -90,29 +90,29 @@ func (this *configureComp) GetHuntingBossTypeConfigData() (mapType map[int32]str return } -func (this *configureComp) GetBuyChallengeCount(index int32) (data *cfg.GameHuntingChallengeData) { - if v, err := this.GetConfigure(game_challenge); err == nil { - if configure, ok := v.(*cfg.GameHuntingChallenge); ok { - data = configure.Get(index) - return - } - } else { - log.Errorf("get game_challenge conf err:%v", err) - } +// func (this *configureComp) GetBuyChallengeCount(index int32) (data *cfg.GameHuntingChallengeData) { +// if v, err := this.GetConfigure(game_challenge); err == nil { +// if configure, ok := v.(*cfg.GameHuntingChallenge); ok { +// data = configure.Get(index) +// return +// } +// } else { +// log.Errorf("get game_challenge conf err:%v", err) +// } - return -} -func (this *configureComp) GetMaxBuyChallengeCount() int32 { - if v, err := this.GetConfigure(game_challenge); err == nil { - if configure, ok := v.(*cfg.GameHuntingChallenge); ok { - return int32(len(configure.GetDataList())) - } - } else { - log.Errorf("get game_challenge conf err:%v", err) - } +// return +// } +// func (this *configureComp) GetMaxBuyChallengeCount() int32 { +// if v, err := this.GetConfigure(game_challenge); err == nil { +// if configure, ok := v.(*cfg.GameHuntingChallenge); ok { +// return int32(len(configure.GetDataList())) +// } +// } else { +// log.Errorf("get game_challenge conf err:%v", err) +// } - return 0 -} +// return 0 +// } // 获取boss 最大难点 func (this *configureComp) GetMaxDifficultyByBossID(bossId int32) int32 { @@ -123,15 +123,15 @@ func (this *configureComp) GetMaxDifficultyByBossID(bossId int32) int32 { } // 获取最后一条数据 -func (this *configureComp) GetLastBuyChallenge() (data *cfg.GameHuntingChallengeData) { - if v, err := this.GetConfigure(game_challenge); err == nil { - if configure, ok := v.(*cfg.GameHuntingChallenge); ok && len(configure.GetDataList()) > 0 { - data = configure.GetDataList()[len(configure.GetDataList())-1] - return - } - } else { - log.Errorf("get game_challenge conf err:%v", err) - } +// func (this *configureComp) GetLastBuyChallenge() (data *cfg.GameHuntingChallengeData) { +// if v, err := this.GetConfigure(game_challenge); err == nil { +// if configure, ok := v.(*cfg.GameHuntingChallenge); ok && len(configure.GetDataList()) > 0 { +// data = configure.GetDataList()[len(configure.GetDataList())-1] +// return +// } +// } else { +// log.Errorf("get game_challenge conf err:%v", err) +// } - return -} +// return +// } diff --git a/modules/user/api_create.go b/modules/user/api_create.go index 3e59712aa..bdd268d8b 100644 --- a/modules/user/api_create.go +++ b/modules/user/api_create.go @@ -22,12 +22,12 @@ func (this *apiComp) CreateCheck(session comm.IUserSession, req *pb.UserCreateRe } // 创角 -func (this *apiComp) Create(session comm.IUserSession, req *pb.UserCreateReq) (code pb.ErrorCode, data *pb.ErrorData) { +func (this *apiComp) Create(session comm.IUserSession, req *pb.UserCreateReq) (code pb.ErrorCode, edata *pb.ErrorData) { if code = this.CreateCheck(session, req); code != pb.ErrorCode_Success { return } - resp := &pb.UserCreateResp{} + // resp := &pb.UserCreateResp{} uid := session.GetUserId() //获取用户 self := this.module.modelUser.GetUser(session.GetUserId()) @@ -44,8 +44,8 @@ func (this *apiComp) Create(session comm.IUserSession, req *pb.UserCreateReq) (c //查询昵称是否重复 if ok := this.module.modelUser.NickNameIsExist(req.NickName); !ok { - resp.Code = pb.ErrorCode_UserNickNameExist - this.sendMsg(session, UserSubTypeCreate, resp) + code = pb.ErrorCode_UserNickNameExist + // this.sendMsg(session, UserSubTypeCreate, resp) return } @@ -118,13 +118,12 @@ func (this *apiComp) Create(session comm.IUserSession, req *pb.UserCreateReq) (c // } // }() - resp.IsSucc = true - this.sendMsg(session, UserSubTypeCreate, resp) - + // resp.IsSucc = true + // this.sendMsg(session, UserSubTypeCreate, resp) + session.SendMsg(string(this.module.GetType()), UserSubTypeCreate, &pb.UserCreateResp{}) if req.Figure != 0 { go this.module.ModuleRtask.TriggerTask(uid, comm.GettaskParam(comm.Rtype72, 1)) } - this.mail.SendMailByCid(session, comm.Welcomemail, nil) return } diff --git a/modules/viking/comp_configure.go b/modules/viking/comp_configure.go index 7ac0ea590..17c4b4a5e 100644 --- a/modules/viking/comp_configure.go +++ b/modules/viking/comp_configure.go @@ -11,7 +11,7 @@ import ( const ( game_vikingboss = "game_vikingboss.json" - game_challenge = "game_vikingchallenge.json" + // game_challenge = "game_vikingchallenge.json" ) ///配置管理基础组件 @@ -43,7 +43,7 @@ func (this *configureComp) Init(service core.IService, module core.IModule, comp log.Errorf("get game_viking conf err:%v", err) return }) - err = this.LoadConfigure(game_challenge, cfg.NewGameVikingChallenge) + // err = this.LoadConfigure(game_challenge, cfg.NewGameVikingChallenge) // _data := this.GetVikingBossTypeConfigData() // log.Debugf("%v", _data) @@ -92,30 +92,30 @@ func (this *configureComp) GetVikingBossTypeConfigData() map[int32]struct{} { return mapType } -func (this *configureComp) GetBuyChallengeCount(index int32) (data *cfg.GameVikingChallengeData) { - if v, err := this.GetConfigure(game_challenge); err == nil { - if configure, ok := v.(*cfg.GameVikingChallenge); ok { - data = configure.Get(index) - return - } - } else { - log.Errorf("get game_challenge conf err:%v", err) - } +// func (this *configureComp) GetBuyChallengeCount(index int32) (data *cfg.GameVikingChallengeData) { +// if v, err := this.GetConfigure(game_challenge); err == nil { +// if configure, ok := v.(*cfg.GameVikingChallenge); ok { +// data = configure.Get(index) +// return +// } +// } else { +// log.Errorf("get game_challenge conf err:%v", err) +// } - return -} +// return +// } -func (this *configureComp) GetMaxBuyChallengeCount() int32 { - if v, err := this.GetConfigure(game_challenge); err == nil { - if configure, ok := v.(*cfg.GameVikingChallenge); ok { - return int32(len(configure.GetDataList())) - } - } else { - log.Errorf("get game_challenge conf err:%v", err) - } +// func (this *configureComp) GetMaxBuyChallengeCount() int32 { +// if v, err := this.GetConfigure(game_challenge); err == nil { +// if configure, ok := v.(*cfg.GameVikingChallenge); ok { +// return int32(len(configure.GetDataList())) +// } +// } else { +// log.Errorf("get game_challenge conf err:%v", err) +// } - return 0 -} +// return 0 +// } // 获取boss 最大难点 func (this *configureComp) GetMaxDifficultyByBossID(bossId int32) int32 { @@ -126,15 +126,15 @@ func (this *configureComp) GetMaxDifficultyByBossID(bossId int32) int32 { } // 获取最后一条数据 -func (this *configureComp) GetLastBuyChallenge() (data *cfg.GameVikingChallengeData) { - if v, err := this.GetConfigure(game_challenge); err == nil { - if configure, ok := v.(*cfg.GameVikingChallenge); ok && len(configure.GetDataList()) > 0 { - data = configure.GetDataList()[len(configure.GetDataList())-1] - return - } - } else { - log.Errorf("get game_challenge conf err:%v", err) - } +// func (this *configureComp) GetLastBuyChallenge() (data *cfg.GameVikingChallengeData) { +// if v, err := this.GetConfigure(game_challenge); err == nil { +// if configure, ok := v.(*cfg.GameVikingChallenge); ok && len(configure.GetDataList()) > 0 { +// data = configure.GetDataList()[len(configure.GetDataList())-1] +// return +// } +// } else { +// log.Errorf("get game_challenge conf err:%v", err) +// } - return -} +// return +// } diff --git a/modules/worldtask/api_accept.go b/modules/worldtask/api_accept.go index 6ddabed81..8177699b8 100644 --- a/modules/worldtask/api_accept.go +++ b/modules/worldtask/api_accept.go @@ -95,7 +95,7 @@ func (a *apiComp) Accept(session comm.IUserSession, req *pb.WorldtaskAcceptReq) // 检查当前任务的完成条件 func (this *apiComp) checkCurrentCompleteCond(uid string, completeCondIds []int32, userTask *pb.DBWorldtask) (condIds []int32) { - + for _, condId := range completeCondIds { if condId == 0 { continue diff --git a/pb/buried_db.pb.go b/pb/buried_db.pb.go index d1cd0846d..926d9b6f8 100644 --- a/pb/buried_db.pb.go +++ b/pb/buried_db.pb.go @@ -81,8 +81,8 @@ type DBBuriedItem struct { Conid int32 `protobuf:"varint,1,opt,name=conid,proto3" json:"conid" bson:"conid"` //条件id State BuriedItemState `protobuf:"varint,2,opt,name=state,proto3,enum=BuriedItemState" json:"state" bson:"state"` //状态 - Value int32 `protobuf:"varint,3,opt,name=value,proto3" json:"value" bson:"value"` //条件值 - Timestamp int64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp" bson:"timestamp"` //最后一次操作时间 + Value []int32 `protobuf:"varint,3,rep,packed,name=value,proto3" json:"value" bson:"value"` //条件值 + Timestamp int64 `protobuf:"varint,5,opt,name=timestamp,proto3" json:"timestamp" bson:"timestamp"` //最后一次操作时间 } func (x *DBBuriedItem) Reset() { @@ -131,11 +131,11 @@ func (x *DBBuriedItem) GetState() BuriedItemState { return BuriedItemState_Inactivated } -func (x *DBBuriedItem) GetValue() int32 { +func (x *DBBuriedItem) GetValue() []int32 { if x != nil { return x.Value } - return 0 + return nil } func (x *DBBuriedItem) GetTimestamp() int64 { @@ -227,8 +227,8 @@ var file_buried_buried_db_proto_rawDesc = []byte{ 0x26, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x10, 0x2e, 0x42, 0x75, 0x72, 0x69, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1c, 0x0a, - 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, + 0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1c, 0x0a, + 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xb7, 0x01, 0x0a, 0x08, 0x44, 0x42, 0x42, 0x75, 0x72, 0x69, 0x65, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, diff --git a/sys/configure/structs/Game.ArenaBuyChallenge.go b/sys/configure/structs/Game.ArenaBuyChallenge.go deleted file mode 100644 index e8ccd5d78..000000000 --- a/sys/configure/structs/Game.ArenaBuyChallenge.go +++ /dev/null @@ -1,42 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -type GameArenaBuyChallenge struct { - _dataMap map[int32]*GameArenaBuyChallengeData - _dataList []*GameArenaBuyChallengeData -} - -func NewGameArenaBuyChallenge(_buf []map[string]interface{}) (*GameArenaBuyChallenge, error) { - _dataList := make([]*GameArenaBuyChallengeData, 0, len(_buf)) - dataMap := make(map[int32]*GameArenaBuyChallengeData) - for _, _ele_ := range _buf { - if _v, err2 := DeserializeGameArenaBuyChallengeData(_ele_); err2 != nil { - return nil, err2 - } else { - _dataList = append(_dataList, _v) - dataMap[_v.Num] = _v - } - } - return &GameArenaBuyChallenge{_dataList:_dataList, _dataMap:dataMap}, nil -} - -func (table *GameArenaBuyChallenge) GetDataMap() map[int32]*GameArenaBuyChallengeData { - return table._dataMap -} - -func (table *GameArenaBuyChallenge) GetDataList() []*GameArenaBuyChallengeData { - return table._dataList -} - -func (table *GameArenaBuyChallenge) Get(key int32) *GameArenaBuyChallengeData { - return table._dataMap[key] -} - - diff --git a/sys/configure/structs/Game.ArenaBuyChallengeData.go b/sys/configure/structs/Game.ArenaBuyChallengeData.go deleted file mode 100644 index 9701705f2..000000000 --- a/sys/configure/structs/Game.ArenaBuyChallengeData.go +++ /dev/null @@ -1,50 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -import "errors" - -type GameArenaBuyChallengeData struct { - Num int32 - Need []*Gameatn -} - -const TypeId_GameArenaBuyChallengeData = -706156046 - -func (*GameArenaBuyChallengeData) GetTypeId() int32 { - return -706156046 -} - -func (_v *GameArenaBuyChallengeData)Deserialize(_buf map[string]interface{}) (err error) { - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["num"].(float64); !_ok_ { err = errors.New("num error"); return }; _v.Num = int32(_tempNum_) } - { - var _arr_ []interface{} - var _ok_ bool - if _arr_, _ok_ = _buf["need"].([]interface{}); !_ok_ { err = errors.New("need error"); return } - - _v.Need = make([]*Gameatn, 0, len(_arr_)) - - for _, _e_ := range _arr_ { - var _list_v_ *Gameatn - { var _ok_ bool; var _x_ map[string]interface{}; if _x_, _ok_ = _e_.(map[string]interface{}); !_ok_ { err = errors.New("_list_v_ error"); return }; if _list_v_, err = DeserializeGameatn(_x_); err != nil { return } } - _v.Need = append(_v.Need, _list_v_) - } - } - - return -} - -func DeserializeGameArenaBuyChallengeData(_buf map[string]interface{}) (*GameArenaBuyChallengeData, error) { - v := &GameArenaBuyChallengeData{} - if err := v.Deserialize(_buf); err == nil { - return v, nil - } else { - return nil, err - } -} diff --git a/sys/configure/structs/Game.BuriedCondiData.go b/sys/configure/structs/Game.BuriedCondiData.go index 60cb9105c..59baa3c4f 100644 --- a/sys/configure/structs/Game.BuriedCondiData.go +++ b/sys/configure/structs/Game.BuriedCondiData.go @@ -18,7 +18,6 @@ type GameBuriedCondiData struct { Type int32 Valid int32 NPC int32 - Vtype int32 Value int32 Filter []*Gamecompare } @@ -37,7 +36,6 @@ func (_v *GameBuriedCondiData)Deserialize(_buf map[string]interface{}) (err erro { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["type"].(float64); !_ok_ { err = errors.New("type error"); return }; _v.Type = int32(_tempNum_) } { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["valid"].(float64); !_ok_ { err = errors.New("valid error"); return }; _v.Valid = int32(_tempNum_) } { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["NPC"].(float64); !_ok_ { err = errors.New("NPC error"); return }; _v.NPC = int32(_tempNum_) } - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["vtype"].(float64); !_ok_ { err = errors.New("vtype error"); return }; _v.Vtype = int32(_tempNum_) } { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["value"].(float64); !_ok_ { err = errors.New("value error"); return }; _v.Value = int32(_tempNum_) } { var _arr_ []interface{} diff --git a/sys/configure/structs/Game.BuriedTypeData.go b/sys/configure/structs/Game.BuriedTypeData.go index 74f08020d..241fc8efa 100644 --- a/sys/configure/structs/Game.BuriedTypeData.go +++ b/sys/configure/structs/Game.BuriedTypeData.go @@ -13,11 +13,6 @@ import "errors" type GameBuriedTypeData struct { Id int32 Insert int32 - Desc string - Data1 string - Data2 string - Data3 string - Data4 string } const TypeId_GameBuriedTypeData = -452590967 @@ -29,11 +24,6 @@ func (*GameBuriedTypeData) GetTypeId() int32 { func (_v *GameBuriedTypeData)Deserialize(_buf map[string]interface{}) (err error) { { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["id"].(float64); !_ok_ { err = errors.New("id error"); return }; _v.Id = int32(_tempNum_) } { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["insert"].(float64); !_ok_ { err = errors.New("insert error"); return }; _v.Insert = int32(_tempNum_) } - { var _ok_ bool; if _v.Desc, _ok_ = _buf["desc"].(string); !_ok_ { err = errors.New("desc error"); return } } - { var _ok_ bool; if _v.Data1, _ok_ = _buf["data1"].(string); !_ok_ { err = errors.New("data1 error"); return } } - { var _ok_ bool; if _v.Data2, _ok_ = _buf["data2"].(string); !_ok_ { err = errors.New("data2 error"); return } } - { var _ok_ bool; if _v.Data3, _ok_ = _buf["data3"].(string); !_ok_ { err = errors.New("data3 error"); return } } - { var _ok_ bool; if _v.Data4, _ok_ = _buf["data4"].(string); !_ok_ { err = errors.New("data4 error"); return } } return } diff --git a/sys/configure/structs/Game.HuntingChallenge.go b/sys/configure/structs/Game.HuntingChallenge.go deleted file mode 100644 index 4cc4ec234..000000000 --- a/sys/configure/structs/Game.HuntingChallenge.go +++ /dev/null @@ -1,42 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -type GameHuntingChallenge struct { - _dataMap map[int32]*GameHuntingChallengeData - _dataList []*GameHuntingChallengeData -} - -func NewGameHuntingChallenge(_buf []map[string]interface{}) (*GameHuntingChallenge, error) { - _dataList := make([]*GameHuntingChallengeData, 0, len(_buf)) - dataMap := make(map[int32]*GameHuntingChallengeData) - for _, _ele_ := range _buf { - if _v, err2 := DeserializeGameHuntingChallengeData(_ele_); err2 != nil { - return nil, err2 - } else { - _dataList = append(_dataList, _v) - dataMap[_v.Buynum] = _v - } - } - return &GameHuntingChallenge{_dataList:_dataList, _dataMap:dataMap}, nil -} - -func (table *GameHuntingChallenge) GetDataMap() map[int32]*GameHuntingChallengeData { - return table._dataMap -} - -func (table *GameHuntingChallenge) GetDataList() []*GameHuntingChallengeData { - return table._dataList -} - -func (table *GameHuntingChallenge) Get(key int32) *GameHuntingChallengeData { - return table._dataMap[key] -} - - diff --git a/sys/configure/structs/Game.HuntingChallengeData.go b/sys/configure/structs/Game.HuntingChallengeData.go deleted file mode 100644 index 1a8b803cf..000000000 --- a/sys/configure/structs/Game.HuntingChallengeData.go +++ /dev/null @@ -1,50 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -import "errors" - -type GameHuntingChallengeData struct { - Buynum int32 - Need []*Gameatn -} - -const TypeId_GameHuntingChallengeData = 1005265914 - -func (*GameHuntingChallengeData) GetTypeId() int32 { - return 1005265914 -} - -func (_v *GameHuntingChallengeData)Deserialize(_buf map[string]interface{}) (err error) { - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["buynum"].(float64); !_ok_ { err = errors.New("buynum error"); return }; _v.Buynum = int32(_tempNum_) } - { - var _arr_ []interface{} - var _ok_ bool - if _arr_, _ok_ = _buf["need"].([]interface{}); !_ok_ { err = errors.New("need error"); return } - - _v.Need = make([]*Gameatn, 0, len(_arr_)) - - for _, _e_ := range _arr_ { - var _list_v_ *Gameatn - { var _ok_ bool; var _x_ map[string]interface{}; if _x_, _ok_ = _e_.(map[string]interface{}); !_ok_ { err = errors.New("_list_v_ error"); return }; if _list_v_, err = DeserializeGameatn(_x_); err != nil { return } } - _v.Need = append(_v.Need, _list_v_) - } - } - - return -} - -func DeserializeGameHuntingChallengeData(_buf map[string]interface{}) (*GameHuntingChallengeData, error) { - v := &GameHuntingChallengeData{} - if err := v.Deserialize(_buf); err == nil { - return v, nil - } else { - return nil, err - } -} diff --git a/sys/configure/structs/Game.VikingChallenge.go b/sys/configure/structs/Game.VikingChallenge.go deleted file mode 100644 index bf6d8a8c3..000000000 --- a/sys/configure/structs/Game.VikingChallenge.go +++ /dev/null @@ -1,42 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -type GameVikingChallenge struct { - _dataMap map[int32]*GameVikingChallengeData - _dataList []*GameVikingChallengeData -} - -func NewGameVikingChallenge(_buf []map[string]interface{}) (*GameVikingChallenge, error) { - _dataList := make([]*GameVikingChallengeData, 0, len(_buf)) - dataMap := make(map[int32]*GameVikingChallengeData) - for _, _ele_ := range _buf { - if _v, err2 := DeserializeGameVikingChallengeData(_ele_); err2 != nil { - return nil, err2 - } else { - _dataList = append(_dataList, _v) - dataMap[_v.Buynum] = _v - } - } - return &GameVikingChallenge{_dataList:_dataList, _dataMap:dataMap}, nil -} - -func (table *GameVikingChallenge) GetDataMap() map[int32]*GameVikingChallengeData { - return table._dataMap -} - -func (table *GameVikingChallenge) GetDataList() []*GameVikingChallengeData { - return table._dataList -} - -func (table *GameVikingChallenge) Get(key int32) *GameVikingChallengeData { - return table._dataMap[key] -} - - diff --git a/sys/configure/structs/Game.VikingChallengeData.go b/sys/configure/structs/Game.VikingChallengeData.go deleted file mode 100644 index 7a2fb627b..000000000 --- a/sys/configure/structs/Game.VikingChallengeData.go +++ /dev/null @@ -1,50 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -import "errors" - -type GameVikingChallengeData struct { - Buynum int32 - Need []*Gameatn -} - -const TypeId_GameVikingChallengeData = 1311823367 - -func (*GameVikingChallengeData) GetTypeId() int32 { - return 1311823367 -} - -func (_v *GameVikingChallengeData)Deserialize(_buf map[string]interface{}) (err error) { - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["buynum"].(float64); !_ok_ { err = errors.New("buynum error"); return }; _v.Buynum = int32(_tempNum_) } - { - var _arr_ []interface{} - var _ok_ bool - if _arr_, _ok_ = _buf["need"].([]interface{}); !_ok_ { err = errors.New("need error"); return } - - _v.Need = make([]*Gameatn, 0, len(_arr_)) - - for _, _e_ := range _arr_ { - var _list_v_ *Gameatn - { var _ok_ bool; var _x_ map[string]interface{}; if _x_, _ok_ = _e_.(map[string]interface{}); !_ok_ { err = errors.New("_list_v_ error"); return }; if _list_v_, err = DeserializeGameatn(_x_); err != nil { return } } - _v.Need = append(_v.Need, _list_v_) - } - } - - return -} - -func DeserializeGameVikingChallengeData(_buf map[string]interface{}) (*GameVikingChallengeData, error) { - v := &GameVikingChallengeData{} - if err := v.Deserialize(_buf); err == nil { - return v, nil - } else { - return nil, err - } -} diff --git a/sys/configure/structs/Tables.go b/sys/configure/structs/Tables.go index 49ce43567..7cb8be625 100644 --- a/sys/configure/structs/Tables.go +++ b/sys/configure/structs/Tables.go @@ -65,14 +65,12 @@ type Tables struct { Gourmet *GameGourmet Drop *GameDrop VikingBoss *GameVikingBoss - VikingChallenge *GameVikingChallenge VikingLineup *GameVikingLineup VikingEntrance *GameVikingEntrance DreamlandBoos *GameDreamlandBoos DreamlandChallenge *GameDreamlandChallenge DreamlandTrigger *GameDreamlandTrigger HuntingBoss *GameHuntingBoss - HuntingChallenge *GameHuntingChallenge HuntingOpenTime *GameHuntingOpenTime HuntingLineup *GameHuntingLineup MonsterFormat *GameMonsterFormat @@ -87,7 +85,6 @@ type Tables struct { Herofusion *GameHerofusion PlayerInfor *GamePlayerInfor PlayerInfor_overview *GamePlayerInfor_overview - ArenaBuyChallenge *GameArenaBuyChallenge ArenaActiveReward *GameArenaActiveReward ArenaRobot *GameArenaRobot ArenaRankReward *GameArenaRankReward @@ -529,12 +526,6 @@ func NewTables(loader JsonLoader) (*Tables, error) { if tables.VikingBoss, err = NewGameVikingBoss(buf) ; err != nil { return nil, err } - if buf, err = loader("game_vikingchallenge") ; err != nil { - return nil, err - } - if tables.VikingChallenge, err = NewGameVikingChallenge(buf) ; err != nil { - return nil, err - } if buf, err = loader("game_vikinglineup") ; err != nil { return nil, err } @@ -571,12 +562,6 @@ func NewTables(loader JsonLoader) (*Tables, error) { if tables.HuntingBoss, err = NewGameHuntingBoss(buf) ; err != nil { return nil, err } - if buf, err = loader("game_huntingchallenge") ; err != nil { - return nil, err - } - if tables.HuntingChallenge, err = NewGameHuntingChallenge(buf) ; err != nil { - return nil, err - } if buf, err = loader("game_huntingopentime") ; err != nil { return nil, err } @@ -661,12 +646,6 @@ func NewTables(loader JsonLoader) (*Tables, error) { if tables.PlayerInfor_overview, err = NewGamePlayerInfor_overview(buf) ; err != nil { return nil, err } - if buf, err = loader("game_arenabuychallenge") ; err != nil { - return nil, err - } - if tables.ArenaBuyChallenge, err = NewGameArenaBuyChallenge(buf) ; err != nil { - return nil, err - } if buf, err = loader("game_arenaactivereward") ; err != nil { return nil, err } diff --git a/sys/configure/structs/game.equipAttrlibrary.go b/sys/configure/structs/game.equipAttrlibrary.go deleted file mode 100644 index a6f783bec..000000000 --- a/sys/configure/structs/game.equipAttrlibrary.go +++ /dev/null @@ -1,42 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -type GameEquipAttrlibrary struct { - _dataMap map[int32]*GameEquipAttrlibraryData - _dataList []*GameEquipAttrlibraryData -} - -func NewGameEquipAttrlibrary(_buf []map[string]interface{}) (*GameEquipAttrlibrary, error) { - _dataList := make([]*GameEquipAttrlibraryData, 0, len(_buf)) - dataMap := make(map[int32]*GameEquipAttrlibraryData) - for _, _ele_ := range _buf { - if _v, err2 := DeserializeGameEquipAttrlibraryData(_ele_); err2 != nil { - return nil, err2 - } else { - _dataList = append(_dataList, _v) - dataMap[_v.Key] = _v - } - } - return &GameEquipAttrlibrary{_dataList:_dataList, _dataMap:dataMap}, nil -} - -func (table *GameEquipAttrlibrary) GetDataMap() map[int32]*GameEquipAttrlibraryData { - return table._dataMap -} - -func (table *GameEquipAttrlibrary) GetDataList() []*GameEquipAttrlibraryData { - return table._dataList -} - -func (table *GameEquipAttrlibrary) Get(key int32) *GameEquipAttrlibraryData { - return table._dataMap[key] -} - - diff --git a/sys/configure/structs/game.equipAttrlibraryData.go b/sys/configure/structs/game.equipAttrlibraryData.go deleted file mode 100644 index 565c5c1f5..000000000 --- a/sys/configure/structs/game.equipAttrlibraryData.go +++ /dev/null @@ -1,60 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -package cfg - -import "errors" - -type GameEquipAttrlibraryData struct { - Key int32 - Libraryid int32 - Attrkey string - Attrvar int32 - AttrvarCorrect int32 - Probability int32 - Addition []int32 -} - -const TypeId_GameEquipAttrlibraryData = 1806205600 - -func (*GameEquipAttrlibraryData) GetTypeId() int32 { - return 1806205600 -} - -func (_v *GameEquipAttrlibraryData)Deserialize(_buf map[string]interface{}) (err error) { - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["key"].(float64); !_ok_ { err = errors.New("key error"); return }; _v.Key = int32(_tempNum_) } - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["libraryid"].(float64); !_ok_ { err = errors.New("libraryid error"); return }; _v.Libraryid = int32(_tempNum_) } - { var _ok_ bool; if _v.Attrkey, _ok_ = _buf["attrkey"].(string); !_ok_ { err = errors.New("attrkey error"); return } } - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["attrvar"].(float64); !_ok_ { err = errors.New("attrvar error"); return }; _v.Attrvar = int32(_tempNum_) } - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["attrvar_correct"].(float64); !_ok_ { err = errors.New("attrvar_correct error"); return }; _v.AttrvarCorrect = int32(_tempNum_) } - { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["probability"].(float64); !_ok_ { err = errors.New("probability error"); return }; _v.Probability = int32(_tempNum_) } - { - var _arr_ []interface{} - var _ok_ bool - if _arr_, _ok_ = _buf["Addition"].([]interface{}); !_ok_ { err = errors.New("Addition error"); return } - - _v.Addition = make([]int32, 0, len(_arr_)) - - for _, _e_ := range _arr_ { - var _list_v_ int32 - { var _ok_ bool; var _x_ float64; if _x_, _ok_ = _e_.(float64); !_ok_ { err = errors.New("_list_v_ error"); return }; _list_v_ = int32(_x_) } - _v.Addition = append(_v.Addition, _list_v_) - } - } - - return -} - -func DeserializeGameEquipAttrlibraryData(_buf map[string]interface{}) (*GameEquipAttrlibraryData, error) { - v := &GameEquipAttrlibraryData{} - if err := v.Deserialize(_buf); err == nil { - return v, nil - } else { - return nil, err - } -}