From 8fbbd1e3f8272461a1a7edf797ea9f7032ba6d99 Mon Sep 17 00:00:00 2001 From: liwei1dao Date: Thu, 30 Mar 2023 20:45:04 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E8=A3=85=E5=A4=87?= =?UTF-8?q?=E5=9B=9E=E6=94=B6=E7=B3=BB=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/json/game_sellcoefficient.json | 22 ++++++++++ modules/equipment/configure.go | 22 +++++++++- modules/equipment/module.go | 10 ++++- sys/configure/structs/Game.SellCoefficient.go | 42 +++++++++++++++++++ .../structs/Game.SellCoefficientData.go | 37 ++++++++++++++++ 5 files changed, 130 insertions(+), 3 deletions(-) create mode 100644 bin/json/game_sellcoefficient.json create mode 100644 sys/configure/structs/Game.SellCoefficient.go create mode 100644 sys/configure/structs/Game.SellCoefficientData.go diff --git a/bin/json/game_sellcoefficient.json b/bin/json/game_sellcoefficient.json new file mode 100644 index 000000000..34a36df15 --- /dev/null +++ b/bin/json/game_sellcoefficient.json @@ -0,0 +1,22 @@ +[ + { + "character": 1, + "coefficient": 1000 + }, + { + "character": 2, + "coefficient": 1200 + }, + { + "character": 3, + "coefficient": 1500 + }, + { + "character": 4, + "coefficient": 2000 + }, + { + "character": 5, + "coefficient": 3000 + } +] \ No newline at end of file diff --git a/modules/equipment/configure.go b/modules/equipment/configure.go index e096f971d..9733f8c97 100644 --- a/modules/equipment/configure.go +++ b/modules/equipment/configure.go @@ -18,6 +18,8 @@ const ( game_equipcompose = "game_equipcompose.json" //装备锻造 game_equipattribute = "game_equipattribute.json" //装备技能列表 game_equipenchanting = "game_equipenchanting.json" //装备附魔 + game_sellcoefficient = "game_sellcoefficient.json" //装备出售品质系数 + ) ///背包配置管理组件 @@ -39,6 +41,7 @@ func (this *configureComp) Init(service core.IService, module core.IModule, comp this.LoadConfigure(game_equipcompose, cfg.NewGameEquipSCompose) this.LoadConfigure(game_equipattribute, cfg.NewGameEquipAttribute) this.LoadConfigure(game_equipenchanting, cfg.NewGameEquipEnchanting) + this.LoadConfigure(game_sellcoefficient, cfg.NewGameSellCoefficient) configure.RegisterConfigure(game_equip, cfg.NewGameEquip, func() { this.equiplock.Lock() if v, err := this.GetConfigure(game_equip); err != nil { @@ -282,7 +285,24 @@ func (this *configureComp) getEquipenchanting(id string) (result *cfg.GameEquipE } else { if result, ok = v.(*cfg.GameEquipEnchanting).GetDataMap()[id]; !ok { err = fmt.Errorf("on found getEquipenchanting id:%s", id) - this.module.Errorf("err:%v", err) + return + } + } + return +} + +//读取装备出售系数配置 +func (this *configureComp) getSellcoefficient(id int32) (result *cfg.GameSellCoefficientData, err error) { + var ( + v interface{} + ok bool + ) + if v, err = this.GetConfigure(game_sellcoefficient); err != nil { + this.module.Errorf("err:%v", err) + return + } else { + if result, ok = v.(*cfg.GameSellCoefficient).GetDataMap()[id]; !ok { + err = fmt.Errorf("on found getSellcoefficient id:%d", id) return } } diff --git a/modules/equipment/module.go b/modules/equipment/module.go index f2545feee..33a527f58 100644 --- a/modules/equipment/module.go +++ b/modules/equipment/module.go @@ -235,6 +235,7 @@ func (this *Equipment) RecycleEquipments(session comm.IUserSession, equs []strin var ( err error equipments []*pb.DB_Equipment + sellconf *cfg.GameSellCoefficientData confs []*cfg.GameEquipData sale [][]*cfg.Gameatn ) @@ -252,19 +253,24 @@ func (this *Equipment) RecycleEquipments(session comm.IUserSession, equs []strin } if confs[i], err = this.configure.GetEquipmentConfigureById(v.CId); err != nil { this.Errorln(err) - code = pb.ErrorCode_EquipmentOnFoundEquipment + code = pb.ErrorCode_ConfigNoFound return } if confs[i].SmithySale == nil || len(confs[i].SmithySale) == 0 { code = pb.ErrorCode_EquipmentNoCanSell return } + if sellconf, err = this.configure.getSellcoefficient(int32(len(v.AdverbEntry))); err != nil { + this.Errorln(err) + code = pb.ErrorCode_ConfigNoFound + return + } sale[i] = make([]*cfg.Gameatn, len(confs[i].Sale)) for n, s := range confs[i].SmithySale { _s := &cfg.Gameatn{ A: s.A, T: s.T, - N: int32(math.Floor(float64(s.N) * float64(discount+1000) / float64(1000))), + N: int32(math.Floor(float64(s.N) * (float64(discount+1000) / float64(1000)) * (float64(sellconf.Coefficient) / float64(1000)))), } sale[i][n] = _s } diff --git a/sys/configure/structs/Game.SellCoefficient.go b/sys/configure/structs/Game.SellCoefficient.go new file mode 100644 index 000000000..3f35471ef --- /dev/null +++ b/sys/configure/structs/Game.SellCoefficient.go @@ -0,0 +1,42 @@ +//------------------------------------------------------------------------------ +// +// 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 GameSellCoefficient struct { + _dataMap map[int32]*GameSellCoefficientData + _dataList []*GameSellCoefficientData +} + +func NewGameSellCoefficient(_buf []map[string]interface{}) (*GameSellCoefficient, error) { + _dataList := make([]*GameSellCoefficientData, 0, len(_buf)) + dataMap := make(map[int32]*GameSellCoefficientData) + for _, _ele_ := range _buf { + if _v, err2 := DeserializeGameSellCoefficientData(_ele_); err2 != nil { + return nil, err2 + } else { + _dataList = append(_dataList, _v) + dataMap[_v.Character] = _v + } + } + return &GameSellCoefficient{_dataList:_dataList, _dataMap:dataMap}, nil +} + +func (table *GameSellCoefficient) GetDataMap() map[int32]*GameSellCoefficientData { + return table._dataMap +} + +func (table *GameSellCoefficient) GetDataList() []*GameSellCoefficientData { + return table._dataList +} + +func (table *GameSellCoefficient) Get(key int32) *GameSellCoefficientData { + return table._dataMap[key] +} + + diff --git a/sys/configure/structs/Game.SellCoefficientData.go b/sys/configure/structs/Game.SellCoefficientData.go new file mode 100644 index 000000000..b63c7a25f --- /dev/null +++ b/sys/configure/structs/Game.SellCoefficientData.go @@ -0,0 +1,37 @@ +//------------------------------------------------------------------------------ +// +// 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 GameSellCoefficientData struct { + Character int32 + Coefficient int32 +} + +const TypeId_GameSellCoefficientData = 46519505 + +func (*GameSellCoefficientData) GetTypeId() int32 { + return 46519505 +} + +func (_v *GameSellCoefficientData)Deserialize(_buf map[string]interface{}) (err error) { + { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["character"].(float64); !_ok_ { err = errors.New("character error"); return }; _v.Character = int32(_tempNum_) } + { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["coefficient"].(float64); !_ok_ { err = errors.New("coefficient error"); return }; _v.Coefficient = int32(_tempNum_) } + return +} + +func DeserializeGameSellCoefficientData(_buf map[string]interface{}) (*GameSellCoefficientData, error) { + v := &GameSellCoefficientData{} + if err := v.Deserialize(_buf); err == nil { + return v, nil + } else { + return nil, err + } +} From 7e1ca9f7b5051ae36451a6b7bf675721c2cf6faa Mon Sep 17 00:00:00 2001 From: liwei1dao Date: Thu, 30 Mar 2023 20:50:49 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E5=9B=9E=E6=94=B6?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/equipment/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/equipment/module.go b/modules/equipment/module.go index 33a527f58..63f373f96 100644 --- a/modules/equipment/module.go +++ b/modules/equipment/module.go @@ -260,7 +260,7 @@ func (this *Equipment) RecycleEquipments(session comm.IUserSession, equs []strin code = pb.ErrorCode_EquipmentNoCanSell return } - if sellconf, err = this.configure.getSellcoefficient(int32(len(v.AdverbEntry))); err != nil { + if sellconf, err = this.configure.getSellcoefficient(int32(len(v.AdverbEntry) + 1)); err != nil { this.Errorln(err) code = pb.ErrorCode_ConfigNoFound return From 703dc468dfea5d1c026890b3dd77b97c84cb58ed Mon Sep 17 00:00:00 2001 From: meixiongfeng <766881921@qq.com> Date: Thu, 30 Mar 2023 20:53:34 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/json/game_breakingbad.json | 10 +- bin/json/game_dispatch_battle.json | 4 +- bin/json/game_dispatch_task.json | 146 ++-- bin/json/game_guide.json | 146 +--- bin/json/game_item.json | 60 +- bin/json/game_mainstage.json | 14 +- bin/json/game_monsterformat.json | 4 +- bin/json/game_rdtaskcondi.json | 413 +++++++++- bin/json/game_rdtasknpc.json | 170 +++- bin/json/game_skillafteratk.json | 133 ++-- bin/json/game_skillatk.json | 18 +- bin/json/game_skillbuff.json | 73 +- bin/json/game_skillpassive.json | 389 ++++----- bin/json/game_smithyatlaslv.json | 32 +- bin/json/game_smithyproficiency.json | 750 +++++++++--------- bin/json/game_worldtask.json | 200 +++-- sys/configure/structs/Game.RdtaskCondiData.go | 2 + 17 files changed, 1568 insertions(+), 996 deletions(-) diff --git a/bin/json/game_breakingbad.json b/bin/json/game_breakingbad.json index 689e344ac..6045b627f 100644 --- a/bin/json/game_breakingbad.json +++ b/bin/json/game_breakingbad.json @@ -18,7 +18,7 @@ "n": 10 }, { - "a": "132005", + "a": "131004", "n": 10 } ], @@ -38,7 +38,7 @@ "n": 10 }, { - "a": "132005", + "a": "131005", "n": 5 } ], @@ -58,7 +58,7 @@ "n": 10 }, { - "a": "132005", + "a": "131005", "n": 5 } ], @@ -112,6 +112,10 @@ { "a": "131004", "n": 10 + }, + { + "a": "132008", + "n": 5 } ], "Type": 2, diff --git a/bin/json/game_dispatch_battle.json b/bin/json/game_dispatch_battle.json index ba42c06bb..b051a9cdd 100644 --- a/bin/json/game_dispatch_battle.json +++ b/bin/json/game_dispatch_battle.json @@ -1,7 +1,7 @@ [ { "id": 1, - "model": "14005", + "model": "51004", "weight": 1000, "startstory": 4001, "rejectstory": 4002, @@ -55,7 +55,7 @@ }, { "id": 2, - "model": "44006", + "model": "51005", "weight": 1000, "startstory": 4001, "rejectstory": 4002, diff --git a/bin/json/game_dispatch_task.json b/bin/json/game_dispatch_task.json index 56f625ad1..7024cbfb6 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": 140, + "tasktime": 91, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -56,7 +56,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 169, + "tasktime": 131, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -104,7 +104,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 172, + "tasktime": 92, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -152,7 +152,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 118, + "tasktime": 167, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -200,7 +200,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 100, + "tasktime": 88, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -248,7 +248,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 131, + "tasktime": 68, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -296,7 +296,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 166, + "tasktime": 74, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -344,7 +344,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 119, + "tasktime": 148, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -392,7 +392,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 120, + "tasktime": 171, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -440,7 +440,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 157, + "tasktime": 159, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -488,7 +488,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 105, + "tasktime": 143, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -536,7 +536,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 79, + "tasktime": 170, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -584,7 +584,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 64, + "tasktime": 74, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -632,7 +632,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 177, + "tasktime": 134, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -680,7 +680,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 96, + "tasktime": 140, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -728,7 +728,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 98, + "tasktime": 86, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -776,7 +776,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 133, + "tasktime": 92, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -824,7 +824,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 66, + "tasktime": 136, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -872,7 +872,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 176, + "tasktime": 155, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -920,7 +920,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 85, + "tasktime": 160, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -968,7 +968,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 157, + "tasktime": 92, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -1016,7 +1016,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 142, + "tasktime": 66, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -1064,7 +1064,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 178, + "tasktime": 73, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -1112,7 +1112,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 113, + "tasktime": 100, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -1160,7 +1160,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 65, + "tasktime": 64, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -1208,7 +1208,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 163, + "tasktime": 96, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -1256,7 +1256,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 95, + "tasktime": 162, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -1304,7 +1304,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 170, + "tasktime": 97, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -1352,7 +1352,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 80, + "tasktime": 170, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -1400,7 +1400,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 71, + "tasktime": 121, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -1448,7 +1448,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 175, + "tasktime": 111, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -1496,7 +1496,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 142, + "tasktime": 138, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -1544,7 +1544,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 170, + "tasktime": 61, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -1592,7 +1592,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 64, + "tasktime": 128, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -1640,7 +1640,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 159, + "tasktime": 127, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -1688,7 +1688,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 98, + "tasktime": 69, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -1736,7 +1736,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 141, + "tasktime": 180, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -1784,7 +1784,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 130, + "tasktime": 175, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -1832,7 +1832,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 171, + "tasktime": 110, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -1880,7 +1880,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 113, + "tasktime": 160, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -1928,7 +1928,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 95, + "tasktime": 170, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -1976,7 +1976,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 100, + "tasktime": 105, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -2024,7 +2024,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 152, + "tasktime": 94, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -2072,7 +2072,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 174, + "tasktime": 170, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -2120,7 +2120,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 105, + "tasktime": 134, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -2168,7 +2168,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 141, + "tasktime": 114, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -2216,7 +2216,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 173, + "tasktime": 140, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -2264,7 +2264,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 167, + "tasktime": 148, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -2312,7 +2312,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 129, + "tasktime": 125, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -2360,7 +2360,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 62, + "tasktime": 147, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -2408,7 +2408,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 142, + "tasktime": 62, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -2456,7 +2456,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 82, + "tasktime": 180, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -2504,7 +2504,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 127, + "tasktime": 134, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -2552,7 +2552,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 73, + "tasktime": 168, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -2600,7 +2600,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 173, + "tasktime": 80, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -2648,7 +2648,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 67, + "tasktime": 159, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -2696,7 +2696,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 179, + "tasktime": 121, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -2744,7 +2744,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 114, + "tasktime": 173, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -2792,7 +2792,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 160, + "tasktime": 121, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -2840,7 +2840,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 123, + "tasktime": 121, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -2888,7 +2888,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 75, + "tasktime": 67, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -2936,7 +2936,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 162, + "tasktime": 180, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -2984,7 +2984,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 122, + "tasktime": 67, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -3032,7 +3032,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 68, + "tasktime": 132, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -3080,7 +3080,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 86, + "tasktime": 149, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -3128,7 +3128,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 180, + "tasktime": 149, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -3176,7 +3176,7 @@ }, "icon": "xmwg_rw_pt4", "taskcd": 200, - "tasktime": 137, + "tasktime": 151, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -3224,7 +3224,7 @@ }, "icon": "xmwg_rw_pt5", "taskcd": 200, - "tasktime": 92, + "tasktime": 96, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -3272,7 +3272,7 @@ }, "icon": "xmwg_rw_pt6", "taskcd": 200, - "tasktime": 71, + "tasktime": 163, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" @@ -3320,7 +3320,7 @@ }, "icon": "xmwg_rw_pt7", "taskcd": 200, - "tasktime": 152, + "tasktime": 97, "tasktxt": { "key": "Entrustment details of Bobi", "text": "这是属于波比的专属委托" @@ -3368,7 +3368,7 @@ }, "icon": "xmwg_rw_pt1", "taskcd": 200, - "tasktime": 70, + "tasktime": 122, "tasktxt": { "key": "Entrustment details of Tiger", "text": "这是属于悍娇虎的专属委托" @@ -3416,7 +3416,7 @@ }, "icon": "xmwg_rw_pt2", "taskcd": 200, - "tasktime": 105, + "tasktime": 84, "tasktxt": { "key": "Entrustment details of Shifu", "text": "这是属于师父的专属委托" @@ -3464,7 +3464,7 @@ }, "icon": "xmwg_rw_pt3", "taskcd": 200, - "tasktime": 90, + "tasktime": 157, "tasktxt": { "key": "Entrustment details of Po", "text": "这是属于阿宝的专属委托" diff --git a/bin/json/game_guide.json b/bin/json/game_guide.json index 1d3a6d1dd..0637a088a 100644 --- a/bin/json/game_guide.json +++ b/bin/json/game_guide.json @@ -1,145 +1 @@ -[ - { - "id": 10, - "group": 10, - "type": 3, - "startPar": "", - "parameter": "", - "interface": "", - "condition": "worldtask_200111", - "followtj": "", - "followguide": 20, - "finger": [], - "offset": { - "x": 0, - "y": 0 - }, - "fingerTime": 0, - "objSize": { - "x": 0, - "y": 0 - }, - "objOffset": { - "x": 0, - "y": 0 - }, - "txt": "500", - "speakerface": 0, - "sound": "", - "mask": 0, - "lock": 0, - "uishow": 0, - "skiptime": 10000, - "skip": 0, - "skipgroup": 0, - "reward": [] - }, - { - "id": 20, - "group": 20, - "type": 5, - "startPar": "", - "parameter": "", - "interface": "", - "condition": "GuideFinish100", - "followtj": "", - "followguide": 0, - "finger": [ - "gesture", - "circle" - ], - "offset": { - "x": 0, - "y": 0 - }, - "fingerTime": 0.5, - "objSize": { - "x": 0, - "y": 0 - }, - "objOffset": { - "x": 0, - "y": 0 - }, - "txt": "", - "speakerface": 0, - "sound": "", - "mask": 1, - "lock": 1, - "uishow": 0, - "skiptime": 10000, - "skip": 0, - "skipgroup": 0, - "reward": [] - }, - { - "id": 40, - "group": 40, - "type": 3, - "startPar": "", - "parameter": "", - "interface": "", - "condition": "worldtask_20050", - "followtj": "", - "followguide": 0, - "finger": [], - "offset": { - "x": 0, - "y": 0 - }, - "fingerTime": 0, - "objSize": { - "x": 0, - "y": 0 - }, - "objOffset": { - "x": 0, - "y": 0 - }, - "txt": "501", - "speakerface": 0, - "sound": "", - "mask": 0, - "lock": 0, - "uishow": 0, - "skiptime": 10000, - "skip": 0, - "skipgroup": 0, - "reward": [] - }, - { - "id": 50, - "group": 50, - "type": 3, - "startPar": "", - "parameter": "", - "interface": "", - "condition": "worldtask_20060", - "followtj": "", - "followguide": 0, - "finger": [], - "offset": { - "x": 0, - "y": 0 - }, - "fingerTime": 0, - "objSize": { - "x": 0, - "y": 0 - }, - "objOffset": { - "x": 0, - "y": 0 - }, - "txt": "503", - "speakerface": 0, - "sound": "", - "mask": 0, - "lock": 0, - "uishow": 0, - "skiptime": 10000, - "skip": 0, - "skipgroup": 0, - "reward": [] - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/bin/json/game_item.json b/bin/json/game_item.json index 3a94d28cc..e03a22bc5 100644 --- a/bin/json/game_item.json +++ b/bin/json/game_item.json @@ -10283,10 +10283,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10019", + "img": "pr_ing_sb", "ico": "pr_ing_sb", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132000", "text": "就是垃圾" }, "sale": [ @@ -10327,10 +10327,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10020", + "img": "pr_ing_bz", "ico": "pr_ing_bz", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132001", "text": "需要面粉和肉" }, "sale": [ @@ -10371,10 +10371,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10021", + "img": "pr_ing_tdnr", "ico": "pr_ing_tdnr", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132002", "text": "需要土豆和肉" }, "sale": [ @@ -10415,10 +10415,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10031", + "img": "pr_ing_ljcr", "ico": "pr_ing_ljcr", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132003", "text": "需要青椒和肉" }, "sale": [ @@ -10459,10 +10459,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10032", + "img": "pr_ing_hp", "ico": "pr_ing_hp", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132004", "text": "需要青椒和盐" }, "sale": [ @@ -10503,10 +10503,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10033", + "img": "pr_ing_mt", "ico": "pr_ing_mt", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132005", "text": "需要面粉" }, "sale": [ @@ -10547,10 +10547,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10034", + "img": "pr_ing_gbr", "ico": "pr_ing_gbr", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132006", "text": "需要面粉和肉" }, "sale": [ @@ -10591,10 +10591,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10031", + "img": "pr_ing_kr", "ico": "pr_ing_kr", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132007", "text": "需要肉" }, "sale": [ @@ -10635,10 +10635,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10032", + "img": "pr_ing_ykr", "ico": "pr_ing_ykr", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132008", "text": "需要粗盐和肉" }, "sale": [ @@ -10679,10 +10679,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10033", + "img": "pr_ing_ktd", "ico": "pr_ing_ktd", "intr": { - "key": "pr_ing_", + "key": "pr_ing_132009", "text": "需要土豆" }, "sale": [ @@ -10723,10 +10723,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10034", + "img": "pr_ing_td", "ico": "pr_ing_td", "intr": { - "key": "pr_ing_", + "key": "pr_ing_131001", "text": "就是土豆" }, "sale": [ @@ -10767,10 +10767,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10031", + "img": "pr_ing_y", "ico": "pr_ing_y", "intr": { - "key": "pr_ing_", + "key": "pr_ing_131002", "text": "就是粗盐" }, "sale": [ @@ -10811,10 +10811,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10032", + "img": "pr_ing_qj", "ico": "pr_ing_qj", "intr": { - "key": "pr_ing_", + "key": "pr_ing_131003", "text": "就是青椒" }, "sale": [ @@ -10855,10 +10855,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10033", + "img": "pr_ing_mf", "ico": "pr_ing_mf", "intr": { - "key": "pr_ing_", + "key": "pr_ing_131004", "text": "就是面粉" }, "sale": [ @@ -10899,10 +10899,10 @@ "isani": 0, "star": 0, "race": 0, - "img": "wp_icon_10034", + "img": "pr_ing_r", "ico": "pr_ing_r", "intr": { - "key": "pr_ing_", + "key": "pr_ing_131005", "text": "就是肉" }, "sale": [ diff --git a/bin/json/game_mainstage.json b/bin/json/game_mainstage.json index c3077a32a..d1ff0f189 100644 --- a/bin/json/game_mainstage.json +++ b/bin/json/game_mainstage.json @@ -145,7 +145,7 @@ ], "BattleReadyID": 102, "FormatList": [ - 101021 + 101011 ], "captainId": 240025, "star": [ @@ -230,8 +230,7 @@ ], "BattleReadyID": 102, "FormatList": [ - 101031, - 101032 + 101011 ], "captainId": 530013, "star": [ @@ -316,8 +315,7 @@ ], "BattleReadyID": 102, "FormatList": [ - 101041, - 101042 + 101011 ], "captainId": 530013, "star": [ @@ -402,8 +400,7 @@ ], "BattleReadyID": 102, "FormatList": [ - 101051, - 101052 + 101011 ], "captainId": 440053, "star": [ @@ -488,8 +485,7 @@ ], "BattleReadyID": 102, "FormatList": [ - 101061, - 101062 + 101011 ], "captainId": 440063, "star": [ diff --git a/bin/json/game_monsterformat.json b/bin/json/game_monsterformat.json index 1ea09f109..a8a1bffbf 100644 --- a/bin/json/game_monsterformat.json +++ b/bin/json/game_monsterformat.json @@ -13959,8 +13959,8 @@ "Id": 301013, "pos": 4, "captainId": 0, - "IsBoss": 1, - "monster": 110215, + "IsBoss": 0, + "monster": -1, "lv": 35, "hppro": 0.6, "atkpro": 1, diff --git a/bin/json/game_rdtaskcondi.json b/bin/json/game_rdtaskcondi.json index c9a32b082..110cb3ef0 100644 --- a/bin/json/game_rdtaskcondi.json +++ b/bin/json/game_rdtaskcondi.json @@ -5,6 +5,7 @@ "tasktxt": "", "type": 1, "valid": 0, + "NPC": 0, "data1": 1, "data2": 25001, "data3": 0, @@ -17,6 +18,7 @@ "tasktxt": "", "type": 2, "valid": 0, + "NPC": 0, "data1": 1, "data2": 3, "data3": 0, @@ -29,6 +31,7 @@ "tasktxt": "", "type": 3, "valid": 0, + "NPC": 0, "data1": 1, "data2": 2, "data3": 0, @@ -41,6 +44,7 @@ "tasktxt": "", "type": 4, "valid": 0, + "NPC": 0, "data1": 10, "data2": 14007, "data3": 0, @@ -53,6 +57,7 @@ "tasktxt": "", "type": 5, "valid": 0, + "NPC": 0, "data1": 2, "data2": 25001, "data3": 0, @@ -65,6 +70,7 @@ "tasktxt": "", "type": 6, "valid": 0, + "NPC": 0, "data1": 5, "data2": 25004, "data3": 0, @@ -77,6 +83,7 @@ "tasktxt": "", "type": 7, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -89,6 +96,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -101,6 +109,7 @@ "tasktxt": "", "type": 9, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -113,6 +122,7 @@ "tasktxt": "", "type": 10, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -125,6 +135,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -137,6 +148,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -149,6 +161,7 @@ "tasktxt": "", "type": 13, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -161,11 +174,12 @@ "tasktxt": "招募一次守护者", "type": 14, "valid": 0, + "NPC": 101, "data1": 1, "data2": 0, "data3": 0, "data4": 0, - "data5": 101 + "data5": 0 }, { "id": 115, @@ -173,6 +187,7 @@ "tasktxt": "", "type": 15, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -185,6 +200,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 5, "data2": 3, "data3": 0, @@ -197,6 +213,7 @@ "tasktxt": "", "type": 17, "valid": 0, + "NPC": 0, "data1": 1, "data2": 3, "data3": 0, @@ -209,6 +226,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -221,6 +239,7 @@ "tasktxt": "", "type": 19, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -233,6 +252,7 @@ "tasktxt": "", "type": 20, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -245,6 +265,7 @@ "tasktxt": "", "type": 21, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -257,6 +278,7 @@ "tasktxt": "", "type": 22, "valid": 0, + "NPC": 0, "data1": 25001, "data2": 0, "data3": 0, @@ -269,6 +291,7 @@ "tasktxt": "", "type": 23, "valid": 0, + "NPC": 0, "data1": 3, "data2": 5, "data3": 20, @@ -281,6 +304,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 4, "data2": 0, "data3": 0, @@ -293,6 +317,7 @@ "tasktxt": "", "type": 25, "valid": 0, + "NPC": 0, "data1": 3, "data2": 25001, "data3": 6, @@ -305,6 +330,7 @@ "tasktxt": "", "type": 26, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -317,6 +343,7 @@ "tasktxt": "", "type": 27, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -329,6 +356,7 @@ "tasktxt": "", "type": 28, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -341,6 +369,7 @@ "tasktxt": "", "type": 29, "valid": 0, + "NPC": 0, "data1": 2, "data2": 22, "data3": 25004, @@ -353,6 +382,7 @@ "tasktxt": "", "type": 30, "valid": 0, + "NPC": 0, "data1": 5, "data2": 3, "data3": 0, @@ -365,6 +395,7 @@ "tasktxt": "", "type": 31, "valid": 0, + "NPC": 0, "data1": 4, "data2": 3, "data3": 0, @@ -377,6 +408,7 @@ "tasktxt": "", "type": 32, "valid": 0, + "NPC": 0, "data1": 3, "data2": 3, "data3": 20, @@ -389,6 +421,7 @@ "tasktxt": "", "type": 33, "valid": 0, + "NPC": 0, "data1": 3, "data2": 3, "data3": 23, @@ -401,6 +434,7 @@ "tasktxt": "", "type": 34, "valid": 0, + "NPC": 0, "data1": 5, "data2": 2, "data3": 0, @@ -413,6 +447,7 @@ "tasktxt": "", "type": 35, "valid": 0, + "NPC": 0, "data1": 2, "data2": 25001, "data3": 0, @@ -425,11 +460,12 @@ "tasktxt": "", "type": 36, "valid": 0, + "NPC": 2, "data1": 1, "data2": 3, "data3": 3, "data4": 1, - "data5": 2 + "data5": 0 }, { "id": 137, @@ -437,6 +473,7 @@ "tasktxt": "", "type": 37, "valid": 0, + "NPC": 0, "data1": 1, "data2": 3, "data3": 0, @@ -449,6 +486,7 @@ "tasktxt": "", "type": 38, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -461,6 +499,7 @@ "tasktxt": "", "type": 39, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -473,6 +512,7 @@ "tasktxt": "", "type": 40, "valid": 0, + "NPC": 0, "data1": 2, "data2": 2, "data3": 0, @@ -485,6 +525,7 @@ "tasktxt": "", "type": 41, "valid": 0, + "NPC": 0, "data1": 2, "data2": 2, "data3": 1, @@ -497,6 +538,7 @@ "tasktxt": "", "type": 42, "valid": 0, + "NPC": 0, "data1": 2, "data2": 2, "data3": 2, @@ -509,6 +551,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 2, "data2": 2, "data3": 0, @@ -521,6 +564,7 @@ "tasktxt": "", "type": 44, "valid": 0, + "NPC": 0, "data1": 3, "data2": 0, "data3": 0, @@ -533,6 +577,7 @@ "tasktxt": "", "type": 45, "valid": 0, + "NPC": 0, "data1": 2, "data2": 1, "data3": 1, @@ -545,6 +590,7 @@ "tasktxt": "", "type": 46, "valid": 0, + "NPC": 0, "data1": 1, "data2": 4, "data3": 1, @@ -557,6 +603,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -569,6 +616,7 @@ "tasktxt": "", "type": 48, "valid": 0, + "NPC": 0, "data1": 1, "data2": 1, "data3": 2, @@ -581,6 +629,7 @@ "tasktxt": "", "type": 49, "valid": 0, + "NPC": 0, "data1": 1, "data2": 1, "data3": 2, @@ -593,6 +642,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 1, "data2": 1, "data3": 0, @@ -605,6 +655,7 @@ "tasktxt": "", "type": 51, "valid": 0, + "NPC": 0, "data1": 1, "data2": 1, "data3": 0, @@ -617,6 +668,7 @@ "tasktxt": "", "type": 52, "valid": 0, + "NPC": 0, "data1": 1, "data2": 14007, "data3": 0, @@ -629,6 +681,7 @@ "tasktxt": "", "type": 53, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -641,6 +694,7 @@ "tasktxt": "", "type": 54, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -653,6 +707,7 @@ "tasktxt": "", "type": 55, "valid": 0, + "NPC": 0, "data1": 2, "data2": 3, "data3": 0, @@ -665,6 +720,7 @@ "tasktxt": "", "type": 56, "valid": 0, + "NPC": 0, "data1": 1, "data2": 1, "data3": 2, @@ -677,6 +733,7 @@ "tasktxt": "", "type": 57, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -689,6 +746,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -701,6 +759,7 @@ "tasktxt": "", "type": 59, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -713,6 +772,7 @@ "tasktxt": "", "type": 60, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -725,11 +785,12 @@ "tasktxt": "通关主线章节1-5", "type": 61, "valid": 0, + "NPC": 102, "data1": 1100105, "data2": 0, "data3": 0, "data4": 0, - "data5": 102 + "data5": 0 }, { "id": 162, @@ -737,6 +798,7 @@ "tasktxt": "", "type": 62, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -749,6 +811,7 @@ "tasktxt": "", "type": 63, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -761,6 +824,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 2, "data2": 0, "data3": 0, @@ -773,6 +837,7 @@ "tasktxt": "", "type": 65, "valid": 0, + "NPC": 0, "data1": 2, "data2": 10001, "data3": 0, @@ -785,6 +850,7 @@ "tasktxt": "", "type": 66, "valid": 0, + "NPC": 0, "data1": 2, "data2": 1, "data3": 0, @@ -797,6 +863,7 @@ "tasktxt": "", "type": 67, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 1, "data3": 0, @@ -809,6 +876,7 @@ "tasktxt": "", "type": 68, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 1, "data3": 0, @@ -821,6 +889,7 @@ "tasktxt": "", "type": 69, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -833,6 +902,7 @@ "tasktxt": "", "type": 1, "valid": 0, + "NPC": 0, "data1": 1, "data2": 44006, "data3": 0, @@ -845,6 +915,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 101, "data3": 0, @@ -857,6 +928,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -869,6 +941,7 @@ "tasktxt": "", "type": 72, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -881,11 +954,12 @@ "tasktxt": "尝试挑战邦尼兔", "type": 70, "valid": 0, + "NPC": 10031, "data1": 1, "data2": 101, "data3": 0, "data4": 0, - "data5": 10031 + "data5": 0 }, { "id": 175, @@ -893,6 +967,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 102, "data3": 0, @@ -905,6 +980,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 103, "data3": 0, @@ -917,6 +993,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 104, "data3": 0, @@ -929,6 +1006,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 105, "data3": 0, @@ -941,6 +1019,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 106, "data3": 0, @@ -953,6 +1032,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 107, "data3": 0, @@ -965,6 +1045,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 108, "data3": 0, @@ -977,6 +1058,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 109, "data3": 0, @@ -989,6 +1071,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10001, "data3": 0, @@ -1001,6 +1084,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10002, "data3": 0, @@ -1013,6 +1097,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10003, "data3": 0, @@ -1025,6 +1110,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10004, "data3": 0, @@ -1037,6 +1123,7 @@ "tasktxt": "", "type": 109, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -1049,6 +1136,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -1061,6 +1149,7 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 0, "data1": 1, "data2": 110, "data3": 0, @@ -1073,11 +1162,12 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 1, "data1": 1, "data2": 111, "data3": 1, "data4": 1, - "data5": 1 + "data5": 0 }, { "id": 191, @@ -1085,11 +1175,12 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 2, "data1": 1, "data2": 112, "data3": 2, "data4": 2, - "data5": 2 + "data5": 0 }, { "id": 192, @@ -1097,11 +1188,12 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 3, "data1": 1, "data2": 113, "data3": 3, "data4": 3, - "data5": 3 + "data5": 0 }, { "id": 193, @@ -1109,11 +1201,12 @@ "tasktxt": "", "type": 70, "valid": 0, + "NPC": 4, "data1": 1, "data2": 114, "data3": 4, "data4": 4, - "data5": 4 + "data5": 0 }, { "id": 195, @@ -1121,6 +1214,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10005, "data3": 0, @@ -1133,6 +1227,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10006, "data3": 0, @@ -1145,6 +1240,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10007, "data3": 0, @@ -1157,6 +1253,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10008, "data3": 0, @@ -1169,6 +1266,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10009, "data3": 0, @@ -1181,6 +1279,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10010, "data3": 0, @@ -1193,6 +1292,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10007, "data3": 0, @@ -1205,6 +1305,7 @@ "tasktxt": "", "type": 140, "valid": 0, + "NPC": 0, "data1": 1, "data2": 10007, "data3": 0, @@ -1217,11 +1318,12 @@ "tasktxt": "调查这些木桩", "type": 149, "valid": 1, + "NPC": 104, "data1": 1, "data2": 0, "data3": 0, "data4": 0, - "data5": 104 + "data5": 0 }, { "id": 301, @@ -1229,11 +1331,12 @@ "tasktxt": "通关主线章节1-1", "type": 61, "valid": 0, + "NPC": 29, "data1": 1100101, "data2": 0, "data3": 0, "data4": 0, - "data5": 29 + "data5": 0 }, { "id": 302, @@ -1241,6 +1344,7 @@ "tasktxt": "", "type": 61, "valid": 0, + "NPC": 0, "data1": 104, "data2": 0, "data3": 0, @@ -1253,6 +1357,7 @@ "tasktxt": "", "type": 61, "valid": 0, + "NPC": 0, "data1": 108, "data2": 0, "data3": 0, @@ -1265,11 +1370,12 @@ "tasktxt": "通关维京远征难度1", "type": 73, "valid": 0, + "NPC": 10071, "data1": 1, "data2": 1001, "data3": 1, "data4": 0, - "data5": 10071 + "data5": 0 }, { "id": 305, @@ -1277,11 +1383,12 @@ "tasktxt": "通关主线1-6", "type": 61, "valid": 0, + "NPC": 102, "data1": 1100106, "data2": 0, "data3": 0, "data4": 0, - "data5": 102 + "data5": 0 }, { "id": 306, @@ -1289,11 +1396,12 @@ "tasktxt": "进行一次10连", "type": 14, "valid": 0, + "NPC": 101, "data1": 10, "data2": 0, "data3": 0, "data4": 0, - "data5": 101 + "data5": 0 }, { "id": 307, @@ -1301,11 +1409,38 @@ "tasktxt": "打败梦魇!", "type": 70, "valid": 0, + "NPC": 10101, "data1": 1, "data2": 102, "data3": 0, "data4": 0, - "data5": 10101 + "data5": 0 + }, + { + "id": 308, + "type_sp": 1, + "tasktxt": "通关维京远征难度1", + "type": 73, + "valid": 0, + "NPC": 70022, + "data1": 1, + "data2": 1001, + "data3": 1, + "data4": 0, + "data5": 0 + }, + { + "id": 309, + "type_sp": 1, + "tasktxt": "通关维京远征难度1", + "type": 73, + "valid": 0, + "NPC": 70032, + "data1": 1, + "data2": 1001, + "data3": 1, + "data4": 0, + "data5": 0 }, { "id": 10001, @@ -1313,6 +1448,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -1325,6 +1461,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -1337,6 +1474,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -1349,6 +1487,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -1361,6 +1500,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -1373,6 +1513,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -1385,6 +1526,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -1397,6 +1539,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -1409,6 +1552,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -1421,6 +1565,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -1433,6 +1578,7 @@ "tasktxt": "", "type": 7, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -1445,6 +1591,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -1457,6 +1604,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -1469,6 +1617,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -1481,6 +1630,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -1493,6 +1643,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -1505,6 +1656,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -1517,6 +1669,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -1529,6 +1682,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -1541,6 +1695,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -1553,6 +1708,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -1565,6 +1721,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1, "data2": 5, "data3": 0, @@ -1577,6 +1734,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 5, "data2": 5, "data3": 0, @@ -1589,6 +1747,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 10, "data2": 5, "data3": 0, @@ -1601,6 +1760,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 20, "data2": 5, "data3": 0, @@ -1613,6 +1773,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 50, "data2": 5, "data3": 0, @@ -1625,6 +1786,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 100, "data2": 5, "data3": 0, @@ -1637,6 +1799,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 200, "data2": 5, "data3": 0, @@ -1649,6 +1812,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 300, "data2": 5, "data3": 0, @@ -1661,6 +1825,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 500, "data2": 5, "data3": 0, @@ -1673,6 +1838,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 5, "data3": 0, @@ -1685,6 +1851,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 1, "data2": 6, "data3": 0, @@ -1697,6 +1864,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 5, "data2": 6, "data3": 0, @@ -1709,6 +1877,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 10, "data2": 6, "data3": 0, @@ -1721,6 +1890,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 20, "data2": 6, "data3": 0, @@ -1733,6 +1903,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 50, "data2": 6, "data3": 0, @@ -1745,6 +1916,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 100, "data2": 6, "data3": 0, @@ -1757,6 +1929,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 200, "data2": 6, "data3": 0, @@ -1769,6 +1942,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 300, "data2": 6, "data3": 0, @@ -1781,6 +1955,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 500, "data2": 6, "data3": 0, @@ -1793,6 +1968,7 @@ "tasktxt": "", "type": 50, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 6, "data3": 0, @@ -1805,6 +1981,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -1817,6 +1994,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -1829,6 +2007,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -1841,6 +2020,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -1853,6 +2033,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -1865,6 +2046,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -1877,6 +2059,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 70, "data2": 0, "data3": 0, @@ -1889,6 +2072,7 @@ "tasktxt": "", "type": 58, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -1901,6 +2085,7 @@ "tasktxt": "", "type": 62, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -1913,6 +2098,7 @@ "tasktxt": "", "type": 62, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -1925,6 +2111,7 @@ "tasktxt": "", "type": 62, "valid": 0, + "NPC": 0, "data1": 99, "data2": 0, "data3": 0, @@ -1937,6 +2124,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -1949,6 +2137,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -1961,6 +2150,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -1973,6 +2163,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -1985,6 +2176,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -1997,6 +2189,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -2009,6 +2202,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -2021,6 +2215,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -2033,6 +2228,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -2045,6 +2241,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -2057,6 +2254,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2069,6 +2267,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -2081,6 +2280,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2093,6 +2293,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -2105,6 +2306,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -2117,6 +2319,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -2129,6 +2332,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -2141,6 +2345,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -2153,6 +2358,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -2165,6 +2371,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -2177,6 +2384,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2189,6 +2397,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2201,6 +2410,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2213,6 +2423,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2225,6 +2436,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2237,6 +2449,7 @@ "tasktxt": "", "type": 62, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2249,6 +2462,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2261,6 +2475,7 @@ "tasktxt": "", "type": 130, "valid": 0, + "NPC": 0, "data1": 3, "data2": 0, "data3": 0, @@ -2273,6 +2488,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2285,6 +2501,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2297,6 +2514,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -2309,6 +2527,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -2321,6 +2540,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 7, "data2": 0, "data3": 0, @@ -2333,6 +2553,7 @@ "tasktxt": "", "type": 62, "valid": 0, + "NPC": 0, "data1": 7, "data2": 0, "data3": 0, @@ -2345,6 +2566,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 7, "data2": 0, "data3": 0, @@ -2357,6 +2579,7 @@ "tasktxt": "", "type": 88, "valid": 0, + "NPC": 0, "data1": 3, "data2": 0, "data3": 0, @@ -2369,6 +2592,7 @@ "tasktxt": "", "type": 105, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2381,6 +2605,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -2393,6 +2618,7 @@ "tasktxt": "", "type": 130, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -2405,6 +2631,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 3, "data2": 0, "data3": 0, @@ -2417,6 +2644,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 7, "data2": 0, "data3": 0, @@ -2429,6 +2657,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -2441,6 +2670,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 90, "data2": 0, "data3": 0, @@ -2453,6 +2683,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 180, "data2": 0, "data3": 0, @@ -2465,6 +2696,7 @@ "tasktxt": "", "type": 8, "valid": 0, + "NPC": 0, "data1": 365, "data2": 0, "data3": 0, @@ -2477,6 +2709,7 @@ "tasktxt": "", "type": 9, "valid": 0, + "NPC": 0, "data1": 3, "data2": 0, "data3": 0, @@ -2489,6 +2722,7 @@ "tasktxt": "", "type": 9, "valid": 0, + "NPC": 0, "data1": 7, "data2": 0, "data3": 0, @@ -2501,6 +2735,7 @@ "tasktxt": "", "type": 9, "valid": 0, + "NPC": 0, "data1": 14, "data2": 0, "data3": 0, @@ -2513,6 +2748,7 @@ "tasktxt": "", "type": 9, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -2525,6 +2761,7 @@ "tasktxt": "", "type": 10, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2537,6 +2774,7 @@ "tasktxt": "", "type": 10, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -2549,6 +2787,7 @@ "tasktxt": "", "type": 10, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2561,6 +2800,7 @@ "tasktxt": "", "type": 10, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -2573,6 +2813,7 @@ "tasktxt": "", "type": 10, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -2585,6 +2826,7 @@ "tasktxt": "", "type": 10, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -2597,6 +2839,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -2609,6 +2852,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2621,6 +2865,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -2633,6 +2878,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -2645,6 +2891,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -2657,6 +2904,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -2669,6 +2917,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -2681,6 +2930,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -2693,6 +2943,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 3000, "data2": 0, "data3": 0, @@ -2705,6 +2956,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 5000, "data2": 0, "data3": 0, @@ -2717,6 +2969,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 10000, "data2": 0, "data3": 0, @@ -2729,6 +2982,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -2741,6 +2995,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -2753,6 +3008,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2765,6 +3021,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -2777,6 +3034,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -2789,6 +3047,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -2801,6 +3060,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -2813,6 +3073,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -2825,6 +3086,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -2837,6 +3099,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 1, "data2": 5, "data3": 0, @@ -2849,6 +3112,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 2, "data2": 5, "data3": 0, @@ -2861,6 +3125,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 3, "data2": 5, "data3": 0, @@ -2873,6 +3138,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 5, "data2": 5, "data3": 0, @@ -2885,6 +3151,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 10, "data2": 5, "data3": 0, @@ -2897,6 +3164,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 15, "data2": 5, "data3": 0, @@ -2909,6 +3177,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 20, "data2": 5, "data3": 0, @@ -2921,6 +3190,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 30, "data2": 5, "data3": 0, @@ -2933,6 +3203,7 @@ "tasktxt": "", "type": 16, "valid": 0, + "NPC": 0, "data1": 50, "data2": 5, "data3": 0, @@ -2945,6 +3216,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -2957,6 +3229,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -2969,6 +3242,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -2981,6 +3255,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -2993,6 +3268,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -3005,6 +3281,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -3017,6 +3294,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -3029,6 +3307,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -3041,6 +3320,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -3053,6 +3333,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 2000, "data2": 0, "data3": 0, @@ -3065,6 +3346,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 5000, "data2": 0, "data3": 0, @@ -3077,6 +3359,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 10000, "data2": 0, "data3": 0, @@ -3089,6 +3372,7 @@ "tasktxt": "", "type": 20, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -3101,6 +3385,7 @@ "tasktxt": "", "type": 20, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -3113,6 +3398,7 @@ "tasktxt": "", "type": 20, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -3125,6 +3411,7 @@ "tasktxt": "", "type": 20, "valid": 0, + "NPC": 0, "data1": 40, "data2": 0, "data3": 0, @@ -3137,6 +3424,7 @@ "tasktxt": "", "type": 20, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -3149,6 +3437,7 @@ "tasktxt": "", "type": 20, "valid": 0, + "NPC": 0, "data1": 60, "data2": 0, "data3": 0, @@ -3161,6 +3450,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 1, "data2": 15, "data3": 0, @@ -3173,6 +3463,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 2, "data2": 15, "data3": 0, @@ -3185,6 +3476,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 4, "data2": 15, "data3": 0, @@ -3197,6 +3489,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 6, "data2": 15, "data3": 0, @@ -3209,6 +3502,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 12, "data2": 15, "data3": 0, @@ -3221,6 +3515,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 18, "data2": 15, "data3": 0, @@ -3233,6 +3528,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 24, "data2": 15, "data3": 0, @@ -3245,6 +3541,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 30, "data2": 15, "data3": 0, @@ -3257,6 +3554,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 60, "data2": 15, "data3": 0, @@ -3269,6 +3567,7 @@ "tasktxt": "", "type": 43, "valid": 0, + "NPC": 0, "data1": 120, "data2": 15, "data3": 0, @@ -3281,6 +3580,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -3293,6 +3593,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -3305,6 +3606,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -3317,6 +3619,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -3329,6 +3632,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -3341,6 +3645,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -3353,6 +3658,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -3365,6 +3671,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -3377,6 +3684,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -3389,6 +3697,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 2000, "data2": 0, "data3": 0, @@ -3401,6 +3710,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 3000, "data2": 0, "data3": 0, @@ -3413,6 +3723,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 5000, "data2": 0, "data3": 0, @@ -3425,6 +3736,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 10000, "data2": 0, "data3": 0, @@ -3437,6 +3749,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -3449,6 +3762,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -3461,6 +3775,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -3473,6 +3788,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -3485,6 +3801,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -3497,6 +3814,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -3509,6 +3827,7 @@ "tasktxt": "", "type": 64, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -3521,6 +3840,7 @@ "tasktxt": "", "type": 68, "valid": 0, + "NPC": 0, "data1": 50000, "data2": 0, "data3": 0, @@ -3533,6 +3853,7 @@ "tasktxt": "", "type": 68, "valid": 0, + "NPC": 0, "data1": 500000, "data2": 0, "data3": 0, @@ -3545,6 +3866,7 @@ "tasktxt": "", "type": 68, "valid": 0, + "NPC": 0, "data1": 5000000, "data2": 0, "data3": 0, @@ -3557,6 +3879,7 @@ "tasktxt": "", "type": 68, "valid": 0, + "NPC": 0, "data1": 50000000, "data2": 0, "data3": 0, @@ -3569,6 +3892,7 @@ "tasktxt": "", "type": 84, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -3581,6 +3905,7 @@ "tasktxt": "", "type": 84, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -3593,6 +3918,7 @@ "tasktxt": "", "type": 84, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -3605,6 +3931,7 @@ "tasktxt": "", "type": 84, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -3617,6 +3944,7 @@ "tasktxt": "", "type": 85, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -3629,6 +3957,7 @@ "tasktxt": "", "type": 85, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -3641,6 +3970,7 @@ "tasktxt": "", "type": 85, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -3653,6 +3983,7 @@ "tasktxt": "", "type": 85, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -3665,6 +3996,7 @@ "tasktxt": "", "type": 85, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -3677,6 +4009,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -3689,6 +4022,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -3701,6 +4035,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -3713,6 +4048,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -3725,6 +4061,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -3737,6 +4074,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -3749,6 +4087,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -3761,6 +4100,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -3773,6 +4113,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 2000, "data2": 0, "data3": 0, @@ -3785,6 +4126,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 3000, "data2": 0, "data3": 0, @@ -3797,6 +4139,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 5000, "data2": 0, "data3": 0, @@ -3809,6 +4152,7 @@ "tasktxt": "", "type": 96, "valid": 0, + "NPC": 0, "data1": 10000, "data2": 0, "data3": 0, @@ -3821,6 +4165,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -3833,6 +4178,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -3845,6 +4191,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 3000, "data2": 0, "data3": 0, @@ -3857,6 +4204,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 5000, "data2": 0, "data3": 0, @@ -3869,6 +4217,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 10000, "data2": 0, "data3": 0, @@ -3881,6 +4230,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 20000, "data2": 0, "data3": 0, @@ -3893,6 +4243,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 30000, "data2": 0, "data3": 0, @@ -3905,6 +4256,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 50000, "data2": 0, "data3": 0, @@ -3917,6 +4269,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 100000, "data2": 0, "data3": 0, @@ -3929,6 +4282,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 200000, "data2": 0, "data3": 0, @@ -3941,6 +4295,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 500000, "data2": 0, "data3": 0, @@ -3953,6 +4308,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1100, "data2": 0, "data3": 0, @@ -3965,6 +4321,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1200, "data2": 0, "data3": 0, @@ -3977,6 +4334,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1300, "data2": 0, "data3": 0, @@ -3989,6 +4347,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1400, "data2": 0, "data3": 0, @@ -4001,6 +4360,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1500, "data2": 0, "data3": 0, @@ -4013,6 +4373,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1600, "data2": 0, "data3": 0, @@ -4025,6 +4386,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1700, "data2": 0, "data3": 0, @@ -4037,6 +4399,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1800, "data2": 0, "data3": 0, @@ -4049,6 +4412,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 1900, "data2": 0, "data3": 0, @@ -4061,6 +4425,7 @@ "tasktxt": "", "type": 128, "valid": 0, + "NPC": 0, "data1": 2000, "data2": 0, "data3": 0, @@ -4073,6 +4438,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 5, "data2": 0, "data3": 0, @@ -4085,6 +4451,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 10, "data2": 0, "data3": 0, @@ -4097,6 +4464,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 20, "data2": 0, "data3": 0, @@ -4109,6 +4477,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 30, "data2": 0, "data3": 0, @@ -4121,6 +4490,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 50, "data2": 0, "data3": 0, @@ -4133,6 +4503,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -4145,6 +4516,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 200, "data2": 0, "data3": 0, @@ -4157,6 +4529,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 300, "data2": 0, "data3": 0, @@ -4169,6 +4542,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 500, "data2": 0, "data3": 0, @@ -4181,6 +4555,7 @@ "tasktxt": "", "type": 131, "valid": 0, + "NPC": 0, "data1": 1000, "data2": 0, "data3": 0, @@ -4193,6 +4568,7 @@ "tasktxt": "", "type": 11, "valid": 0, + "NPC": 0, "data1": 3, "data2": 0, "data3": 0, @@ -4205,6 +4581,7 @@ "tasktxt": "", "type": 12, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -4217,6 +4594,7 @@ "tasktxt": "", "type": 18, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -4229,6 +4607,7 @@ "tasktxt": "", "type": 24, "valid": 0, + "NPC": 0, "data1": 1, "data2": 0, "data3": 0, @@ -4241,6 +4620,7 @@ "tasktxt": "", "type": 47, "valid": 0, + "NPC": 0, "data1": 6, "data2": 0, "data3": 0, @@ -4253,6 +4633,7 @@ "tasktxt": "", "type": 63, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -4265,6 +4646,7 @@ "tasktxt": "", "type": 68, "valid": 0, + "NPC": 0, "data1": 200000, "data2": 0, "data3": 0, @@ -4277,6 +4659,7 @@ "tasktxt": "", "type": 104, "valid": 0, + "NPC": 0, "data1": 100, "data2": 0, "data3": 0, @@ -4289,6 +4672,7 @@ "tasktxt": "和骇客蛛进行对话", "type": 20001, "valid": 1, + "NPC": 10011, "data1": 1, "data2": 602, "data3": 0, @@ -4301,6 +4685,7 @@ "tasktxt": "和邦尼兔进行对话", "type": 20001, "valid": 1, + "NPC": 10021, "data1": 1, "data2": 432, "data3": 0, diff --git a/bin/json/game_rdtasknpc.json b/bin/json/game_rdtasknpc.json index 916a438d0..0a54aac1f 100644 --- a/bin/json/game_rdtasknpc.json +++ b/bin/json/game_rdtasknpc.json @@ -34,7 +34,7 @@ ], "event": [ 2, - 500 + 613 ], "goto": 0 }, @@ -203,7 +203,7 @@ ], "event": [ 2, - 613 + 614 ], "goto": 0 }, @@ -216,7 +216,7 @@ ], "event": [ 2, - 614 + 615 ], "goto": 0 }, @@ -229,7 +229,7 @@ ], "event": [ 2, - 615 + 617 ], "goto": 0 }, @@ -254,8 +254,8 @@ "901" ], "event": [ - 2, - 500 + 10, + 167 ], "goto": 0 }, @@ -359,7 +359,7 @@ ], "event": [ 2, - 500 + 642 ], "goto": 0 }, @@ -375,5 +375,161 @@ 641 ], "goto": 0 + }, + { + "id": 70010, + "datas": [ + "GameMain", + "70010_盖_1", + "901" + ], + "event": [ + 2, + 9010 + ], + "goto": 0 + }, + { + "id": 70020, + "datas": [ + "GameMain", + "支线40010_格里森_1", + "901" + ], + "event": [ + 2, + 9020 + ], + "goto": 0 + }, + { + "id": 70021, + "datas": [ + "SmithyScene", + "打造", + "139" + ], + "event": [ + 2, + 9024 + ], + "goto": 0 + }, + { + "id": 70022, + "datas": [ + "GameMain", + "功能入口-维京远征", + "901" + ], + "event": [ + 10, + 167 + ], + "goto": 0 + }, + { + "id": 70023, + "datas": [ + "GameMain", + "支线40020_格里森_2", + "901" + ], + "event": [ + 2, + 9025 + ], + "goto": 0 + }, + { + "id": 70030, + "datas": [ + "SmithyScene", + "打造", + "139" + ], + "event": [ + 2, + 9030 + ], + "goto": 0 + }, + { + "id": 70031, + "datas": [ + "SmithyScene", + "打造", + "139" + ], + "event": [ + 2, + 9034 + ], + "goto": 0 + }, + { + "id": 70032, + "datas": [ + "GameMain", + "功能入口-维京远征", + "901" + ], + "event": [ + 10, + 167 + ], + "goto": 0 + }, + { + "id": 70033, + "datas": [ + "SmithyScene", + "打造", + "139" + ], + "event": [ + 2, + 9037 + ], + "goto": 0 + }, + { + "id": 70040, + "datas": [ + "WuGuanScene", + "支线60010_瓦希尔指挥官_1", + "137" + ], + "event": [ + 2, + 9040 + ], + "goto": 0 + }, + { + "id": 70050, + "datas": [ + "GameMain", + "支线70010_小伊_1", + "901" + ], + "event": [ + 2, + 9050 + ], + "goto": 0 + }, + { + "id": 70060, + "datas": [ + "GameMain", + "支线80010_鼻涕粗_1", + "901" + ], + "event": [ + 2, + 9060 + ], + "goto": 0 } ] \ No newline at end of file diff --git a/bin/json/game_skillafteratk.json b/bin/json/game_skillafteratk.json index b834c49a0..76cfd4e36 100644 --- a/bin/json/game_skillafteratk.json +++ b/bin/json/game_skillafteratk.json @@ -21107,7 +21107,7 @@ "Argu": [ 455005211, 1, - 1 + 0 ], "FollowSK": [ 255005212 @@ -21156,9 +21156,11 @@ "Argu": [ 455005213, 1, - 1 + 0 + ], + "FollowSK": [ + 255005214 ], - "FollowSK": [], "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, @@ -21221,7 +21223,7 @@ "Argu": [ 455005211, 1, - 1 + 0 ], "FollowSK": [], "SucFollowSK": [], @@ -21235,9 +21237,11 @@ { "Id": 255005313, "EmitPR": 1000, - "From": 2, - "Where": [], - "Order": "", + "From": 4, + "Where": [ + "EnemyHpproless=500" + ], + "Order": "PropertyDown=3", "Limit": 1, "ExecuteCnt": 1, "Type": 1, @@ -21260,7 +21264,7 @@ { "Id": 255005314, "EmitPR": 1000, - "From": 2, + "From": 4, "Where": [], "Order": "", "Limit": 1, @@ -21363,12 +21367,14 @@ "ExecuteCnt": 1, "Type": 3, "Argu": [ - 390001011, + 390001443, 1000, 1, - 1 + -1 + ], + "FollowSK": [ + 255006212 ], - "FollowSK": [], "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, @@ -21392,7 +21398,7 @@ 2000 ], "FollowSK": [ - 255006212 + 255006214 ], "SucFollowSK": [], "FailFollowSK": [], @@ -21414,7 +21420,7 @@ "Argu": [ 455006214, 1, - 1 + 0 ], "FollowSK": [], "SucFollowSK": [], @@ -21428,7 +21434,7 @@ { "Id": 255006311, "EmitPR": 1000, - "From": 2, + "From": 3, "Where": [], "Order": "", "Limit": 1, @@ -21437,9 +21443,12 @@ "Argu": [ 455006311, 1, - 1 + 0 + ], + "FollowSK": [ + 255006312, + 255006313 ], - "FollowSK": [], "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, @@ -21485,7 +21494,7 @@ 390001413, 1000, 1, - 1 + -1 ], "FollowSK": [], "SucFollowSK": [], @@ -21508,30 +21517,7 @@ "Argu": [ 455006314, 1, - 1 - ], - "FollowSK": [], - "SucFollowSK": [], - "FailFollowSK": [], - "MustHit": false, - "DpsRevisiType": 0, - "DpsCondition": "", - "RevisiCondition": "", - "RevisiParams": [] - }, - { - "Id": 255006315, - "EmitPR": 1000, - "From": 2, - "Where": [], - "Order": "", - "Limit": 10, - "ExecuteCnt": 1, - "Type": 1, - "Argu": [ - 1, - 4, - 2000 + 0 ], "FollowSK": [], "SucFollowSK": [], @@ -21554,7 +21540,7 @@ "Argu": [ 455007111, -1, - 1 + 0 ], "FollowSK": [], "SucFollowSK": [], @@ -21629,7 +21615,7 @@ 390001008, 1000, 1, - 1 + 2 ], "FollowSK": [], "SucFollowSK": [], @@ -21654,7 +21640,9 @@ 1, 1 ], - "FollowSK": [], + "FollowSK": [ + 255007116 + ], "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, @@ -21701,7 +21689,10 @@ 1, 1 ], - "FollowSK": [], + "FollowSK": [ + 255007212, + 255007213 + ], "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, @@ -21771,7 +21762,9 @@ 1, 1 ], - "FollowSK": [], + "FollowSK": [ + 255007215 + ], "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, @@ -21818,7 +21811,9 @@ 1, 1 ], - "FollowSK": [], + "FollowSK": [ + 255007312 + ], "SucFollowSK": [], "FailFollowSK": [], "MustHit": false, @@ -21840,7 +21835,7 @@ 390001421, 1000, 1, - 1 + -1 ], "FollowSK": [], "SucFollowSK": [], @@ -21885,7 +21880,7 @@ "ExecuteCnt": 1, "Type": 2, "Argu": [ - 455007314, + 455007312, 1, 1 ], @@ -21927,16 +21922,17 @@ { "Id": 255007316, "EmitPR": 1000, - "From": 2, + "From": 4, "Where": [], "Order": "", "Limit": 1, "ExecuteCnt": 1, - "Type": 1, + "Type": 3, "Argu": [ + 390001444, + 1000, 1, - 4, - 2000 + 1 ], "FollowSK": [ 255007317 @@ -21952,7 +21948,7 @@ { "Id": 255007317, "EmitPR": 1000, - "From": 2, + "From": 4, "Where": [], "Order": "", "Limit": 10, @@ -21960,7 +21956,7 @@ "Type": 3, "Argu": [ 390001105, - 1000, + 500, 1, 1 ], @@ -21976,7 +21972,32 @@ { "Id": 255007318, "EmitPR": 1000, - "From": 2, + "From": 3, + "Where": [], + "Order": "", + "Limit": 1, + "ExecuteCnt": 1, + "Type": 2, + "Argu": [ + 455007313, + 1, + 1 + ], + "FollowSK": [ + 255007319 + ], + "SucFollowSK": [], + "FailFollowSK": [], + "MustHit": false, + "DpsRevisiType": 0, + "DpsCondition": "", + "RevisiCondition": "", + "RevisiParams": [] + }, + { + "Id": 255007319, + "EmitPR": 1000, + "From": 4, "Where": [], "Order": "", "Limit": 1, diff --git a/bin/json/game_skillatk.json b/bin/json/game_skillatk.json index 1230bc56e..a177f1453 100644 --- a/bin/json/game_skillatk.json +++ b/bin/json/game_skillatk.json @@ -11905,8 +11905,7 @@ "Id": [ 255005311, 255005312, - 255005313, - 255005314 + 255005313 ] }, "Desc": { @@ -11963,9 +11962,7 @@ "ChildSkill": { "Id": [ 255006211, - 255006212, - 255006213, - 255006214 + 255006213 ] }, "Desc": { @@ -12026,10 +12023,8 @@ "ChildSkill": { "Id": [ 255007111, - 255007113, - 255007114, - 255007115, - 255007116 + 255007112, + 255007115 ] }, "Desc": { @@ -12058,10 +12053,7 @@ "ChildSkill": { "Id": [ 255007211, - 255007212, - 255007213, - 255007214, - 255007215 + 255007214 ] }, "Desc": { diff --git a/bin/json/game_skillbuff.json b/bin/json/game_skillbuff.json index eefe376b1..0f0440bf4 100644 --- a/bin/json/game_skillbuff.json +++ b/bin/json/game_skillbuff.json @@ -2485,8 +2485,10 @@ "key": "skill_buffdes_390001412", "text": "敌方血量伤害越低,此次伤害越高" }, - "BuffType": 1, - "EffectArgu": [], + "BuffType": 92, + "EffectArgu": [ + 200 + ], "BufParNum": 1, "RelyCheckArgu": [], "CoexistCheckArgu": [], @@ -2557,17 +2559,19 @@ }, "Desc": { "key": "skill_buffdes_390001415", - "text": "" + "text": "受到伤害降低" }, - "BuffType": 0, - "EffectArgu": [], - "BufParNum": 0, + "BuffType": 23, + "EffectArgu": [ + 350 + ], + "BufParNum": 1, "RelyCheckArgu": [], "CoexistCheckArgu": [], "Effect": 0, "AddEffect": false, - "RemoveType": false, - "OverlayTimes": 0, + "RemoveType": true, + "OverlayTimes": 99, "SameID": false, "buffIcon": "", "buffeffect": "", @@ -3234,5 +3238,58 @@ "buffIcon": "", "buffeffect": "", "buffpos": "infopos" + }, + { + "Id": 390001443, + "Name": { + "key": "skill_buff_390001443", + "text": "根据目标身上减益效果数量提升伤害" + }, + "Desc": { + "key": "skill_buffdes_390001443", + "text": "减益效果%+10%伤害" + }, + "BuffType": 98, + "EffectArgu": [ + 1, + 100 + ], + "BufParNum": 0, + "RelyCheckArgu": [], + "CoexistCheckArgu": [], + "Effect": 0, + "AddEffect": false, + "RemoveType": false, + "OverlayTimes": 0, + "SameID": false, + "buffIcon": "", + "buffeffect": "", + "buffpos": "" + }, + { + "Id": 390001444, + "Name": { + "key": "skill_buff_390001444", + "text": "灾祸冰原" + }, + "Desc": { + "key": "skill_buffdes_390001444", + "text": "速度降低100%,无法进行任何行动,无法驱散" + }, + "BuffType": 95, + "EffectArgu": [ + 1000 + ], + "BufParNum": 1, + "RelyCheckArgu": [], + "CoexistCheckArgu": [], + "Effect": 2, + "AddEffect": false, + "RemoveType": false, + "OverlayTimes": 1, + "SameID": true, + "buffIcon": "", + "buffeffect": "", + "buffpos": "" } ] \ No newline at end of file diff --git a/bin/json/game_skillpassive.json b/bin/json/game_skillpassive.json index c63646f0b..affb10e95 100644 --- a/bin/json/game_skillpassive.json +++ b/bin/json/game_skillpassive.json @@ -1518,7 +1518,9 @@ "PasPr": 1000, "Type": "CallSkillPas", "MaxEmitTimes": 1, - "Callback": [] + "Callback": [ + 255006212 + ] }, { "Id": 455006311, @@ -1533,7 +1535,8 @@ "Type": "CallSkillPas", "MaxEmitTimes": 1, "Callback": [ - 255006312 + 255006312, + 255006313 ] }, { @@ -1549,7 +1552,23 @@ "Type": "CallSkillPas", "MaxEmitTimes": 1, "Callback": [ - 255006315 + 155006211 + ] + }, + { + "Id": 455007111, + "When": 15, + "FromCheck": "", + "TargetCheck": "Target=2", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 255007112 ] }, { @@ -1573,13 +1592,13 @@ { "Id": 455007211, "When": 2, - "FromCheck": "Target=2", + "FromCheck": "Target=3", "TargetCheck": "Target=3", "MainSkillCheck": "", "AfterSkillCheck": "", "BuffCheck": "", "AddCon": [ - "EffType=390001415,Result=1" + "Hasbuff=390001415" ], "PasPr": 1000, "Type": "CallSkillPas", @@ -1593,7 +1612,7 @@ "When": 15, "FromCheck": "Target=3", "TargetCheck": "", - "MainSkillCheck": "", + "MainSkillCheck": "SkillID=255007213", "AfterSkillCheck": "", "BuffCheck": "", "AddCon": [], @@ -1604,181 +1623,6 @@ 255007215 ] }, - { - "Id": 400003001, - "When": 16, - "FromCheck": "Target=2", - "TargetCheck": "Target=3", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200003002 - ] - }, - { - "Id": 400006001, - "When": 2, - "FromCheck": "Target=3", - "TargetCheck": "", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200006002 - ] - }, - { - "Id": 400007001, - "When": 16, - "FromCheck": "Target=3", - "TargetCheck": "Target=2", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200007002 - ] - }, - { - "Id": 400001401, - "When": 16, - "FromCheck": "Target=2", - "TargetCheck": "Target=3", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 250, - "Type": "BeatBack", - "MaxEmitTimes": 1, - "Callback": [] - }, - { - "Id": 400001501, - "When": 2, - "FromCheck": "Target=3", - "TargetCheck": "", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200001502 - ] - }, - { - "Id": 400001001, - "When": 2, - "FromCheck": "Target=3,HasBuff=2", - "TargetCheck": "", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200001002 - ] - }, - { - "Id": 400009001, - "When": 21, - "FromCheck": "Target=3,HasBuff=2", - "TargetCheck": "", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200009002 - ] - }, - { - "Id": 400001701, - "When": 20, - "FromCheck": "Target=3", - "TargetCheck": "2", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200001702 - ] - }, - { - "Id": 400001901, - "When": 2, - "FromCheck": "Target=3", - "TargetCheck": "", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 200001902 - ] - }, - { - "Id": 455006214, - "When": 12, - "FromCheck": "Target=3", - "TargetCheck": "Target=2", - "MainSkillCheck": "", - "AfterSkillCheck": "SkillID=255006213", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "DetonateBuff", - "MaxEmitTimes": 1, - "Callback": [ - 390001401, - 10 - ] - }, - { - "Id": 455007111, - "When": 15, - "FromCheck": "", - "TargetCheck": "Target=2", - "MainSkillCheck": "", - "AfterSkillCheck": "", - "BuffCheck": "", - "AddCon": [], - "PasPr": 1000, - "Type": "CallSkillPas", - "MaxEmitTimes": 1, - "Callback": [ - 255007112 - ] - }, { "Id": 455007311, "When": 2, @@ -1797,14 +1641,16 @@ ] }, { - "Id": 455007314, + "Id": 455007312, "When": 12, "FromCheck": "", "TargetCheck": "Target=3", "MainSkillCheck": "", "AfterSkillCheck": "", "BuffCheck": "", - "AddCon": [], + "AddCon": [ + "Hpproless=330" + ], "PasPr": 1000, "Type": "CallSkillPas", "MaxEmitTimes": 1, @@ -1812,6 +1658,41 @@ 255007315 ] }, + { + "Id": 455007313, + "When": 5, + "FromCheck": "Target=3", + "TargetCheck": "", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [ + "Hasbuff=1" + ], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 255007319 + ] + }, + { + "Id": 455006214, + "When": 12, + "FromCheck": "Target=3", + "TargetCheck": "Target=2", + "MainSkillCheck": "", + "AfterSkillCheck": "SkillID=255006213", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "DetonateBuff", + "MaxEmitTimes": 1, + "Callback": [ + 390001401, + 10 + ] + }, { "Id": 455002211, "When": 21, @@ -2313,5 +2194,147 @@ "Callback": [ 244002314 ] + }, + { + "Id": 400003001, + "When": 16, + "FromCheck": "Target=2", + "TargetCheck": "Target=3", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200003002 + ] + }, + { + "Id": 400006001, + "When": 2, + "FromCheck": "Target=3", + "TargetCheck": "", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200006002 + ] + }, + { + "Id": 400007001, + "When": 16, + "FromCheck": "Target=3", + "TargetCheck": "Target=2", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200007002 + ] + }, + { + "Id": 400001401, + "When": 16, + "FromCheck": "Target=2", + "TargetCheck": "Target=3", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 250, + "Type": "BeatBack", + "MaxEmitTimes": 1, + "Callback": [] + }, + { + "Id": 400001501, + "When": 2, + "FromCheck": "Target=3", + "TargetCheck": "", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200001502 + ] + }, + { + "Id": 400001001, + "When": 2, + "FromCheck": "Target=3,HasBuff=2", + "TargetCheck": "", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200001002 + ] + }, + { + "Id": 400009001, + "When": 21, + "FromCheck": "Target=3,HasBuff=2", + "TargetCheck": "", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200009002 + ] + }, + { + "Id": 400001701, + "When": 20, + "FromCheck": "Target=3", + "TargetCheck": "2", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200001702 + ] + }, + { + "Id": 400001901, + "When": 2, + "FromCheck": "Target=3", + "TargetCheck": "", + "MainSkillCheck": "", + "AfterSkillCheck": "", + "BuffCheck": "", + "AddCon": [], + "PasPr": 1000, + "Type": "CallSkillPas", + "MaxEmitTimes": 1, + "Callback": [ + 200001902 + ] } ] \ No newline at end of file diff --git a/bin/json/game_smithyatlaslv.json b/bin/json/game_smithyatlaslv.json index 23fd822f0..81559048f 100644 --- a/bin/json/game_smithyatlaslv.json +++ b/bin/json/game_smithyatlaslv.json @@ -1,7 +1,7 @@ [ { "atlas_lv": 1, - "atlas_score": 0, + "atlas_score": 1, "item_id": [ { "a": "attr", @@ -12,7 +12,7 @@ }, { "atlas_lv": 2, - "atlas_score": 1000, + "atlas_score": 2, "item_id": [ { "a": "attr", @@ -23,7 +23,7 @@ }, { "atlas_lv": 3, - "atlas_score": 2000, + "atlas_score": 3, "item_id": [ { "a": "attr", @@ -34,7 +34,7 @@ }, { "atlas_lv": 4, - "atlas_score": 3000, + "atlas_score": 4, "item_id": [ { "a": "attr", @@ -45,7 +45,7 @@ }, { "atlas_lv": 5, - "atlas_score": 4000, + "atlas_score": 5, "item_id": [ { "a": "attr", @@ -56,7 +56,7 @@ }, { "atlas_lv": 6, - "atlas_score": 5000, + "atlas_score": 6, "item_id": [ { "a": "attr", @@ -67,7 +67,7 @@ }, { "atlas_lv": 7, - "atlas_score": 6000, + "atlas_score": 7, "item_id": [ { "a": "attr", @@ -78,7 +78,7 @@ }, { "atlas_lv": 8, - "atlas_score": 7000, + "atlas_score": 8, "item_id": [ { "a": "attr", @@ -89,7 +89,7 @@ }, { "atlas_lv": 9, - "atlas_score": 8000, + "atlas_score": 9, "item_id": [ { "a": "attr", @@ -100,7 +100,7 @@ }, { "atlas_lv": 10, - "atlas_score": 9000, + "atlas_score": 10, "item_id": [ { "a": "attr", @@ -111,7 +111,7 @@ }, { "atlas_lv": 11, - "atlas_score": 10000, + "atlas_score": 11, "item_id": [ { "a": "attr", @@ -122,7 +122,7 @@ }, { "atlas_lv": 12, - "atlas_score": 11000, + "atlas_score": 12, "item_id": [ { "a": "attr", @@ -133,7 +133,7 @@ }, { "atlas_lv": 13, - "atlas_score": 12000, + "atlas_score": 13, "item_id": [ { "a": "attr", @@ -144,7 +144,7 @@ }, { "atlas_lv": 14, - "atlas_score": 13000, + "atlas_score": 14, "item_id": [ { "a": "attr", @@ -155,7 +155,7 @@ }, { "atlas_lv": 15, - "atlas_score": 14000, + "atlas_score": 15, "item_id": [ { "a": "attr", @@ -166,7 +166,7 @@ }, { "atlas_lv": 16, - "atlas_score": 15000, + "atlas_score": 16, "item_id": [ { "a": "attr", diff --git a/bin/json/game_smithyproficiency.json b/bin/json/game_smithyproficiency.json index c46f9d716..795179d36 100644 --- a/bin/json/game_smithyproficiency.json +++ b/bin/json/game_smithyproficiency.json @@ -3,7 +3,7 @@ "id": 1, "reelId": 1, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -20,7 +20,7 @@ "id": 2, "reelId": 1, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -37,7 +37,7 @@ "id": 3, "reelId": 1, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -54,7 +54,7 @@ "id": 4, "reelId": 1, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -71,7 +71,7 @@ "id": 5, "reelId": 1, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -88,7 +88,7 @@ "id": 6, "reelId": 2, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -105,7 +105,7 @@ "id": 7, "reelId": 2, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -122,7 +122,7 @@ "id": 8, "reelId": 2, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -139,7 +139,7 @@ "id": 9, "reelId": 2, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -156,7 +156,7 @@ "id": 10, "reelId": 2, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -173,7 +173,7 @@ "id": 11, "reelId": 3, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -190,7 +190,7 @@ "id": 12, "reelId": 3, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -207,7 +207,7 @@ "id": 13, "reelId": 3, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -224,7 +224,7 @@ "id": 14, "reelId": 3, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -241,7 +241,7 @@ "id": 15, "reelId": 3, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -258,7 +258,7 @@ "id": 16, "reelId": 4, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -275,7 +275,7 @@ "id": 17, "reelId": 4, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -292,7 +292,7 @@ "id": 18, "reelId": 4, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -309,7 +309,7 @@ "id": 19, "reelId": 4, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -326,7 +326,7 @@ "id": 20, "reelId": 4, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -343,7 +343,7 @@ "id": 21, "reelId": 5, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -360,7 +360,7 @@ "id": 22, "reelId": 5, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -377,7 +377,7 @@ "id": 23, "reelId": 5, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -394,7 +394,7 @@ "id": 24, "reelId": 5, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -411,7 +411,7 @@ "id": 25, "reelId": 5, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -428,7 +428,7 @@ "id": 26, "reelId": 6, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -445,7 +445,7 @@ "id": 27, "reelId": 6, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -462,7 +462,7 @@ "id": 28, "reelId": 6, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -479,7 +479,7 @@ "id": 29, "reelId": 6, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -496,7 +496,7 @@ "id": 30, "reelId": 6, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -513,7 +513,7 @@ "id": 31, "reelId": 7, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -530,7 +530,7 @@ "id": 32, "reelId": 7, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -547,7 +547,7 @@ "id": 33, "reelId": 7, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -564,7 +564,7 @@ "id": 34, "reelId": 7, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -581,7 +581,7 @@ "id": 35, "reelId": 7, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -598,7 +598,7 @@ "id": 36, "reelId": 8, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -615,7 +615,7 @@ "id": 37, "reelId": 8, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -632,7 +632,7 @@ "id": 38, "reelId": 8, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -649,7 +649,7 @@ "id": 39, "reelId": 8, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -666,7 +666,7 @@ "id": 40, "reelId": 8, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -683,7 +683,7 @@ "id": 41, "reelId": 9, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -700,7 +700,7 @@ "id": 42, "reelId": 9, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -717,7 +717,7 @@ "id": 43, "reelId": 9, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -734,7 +734,7 @@ "id": 44, "reelId": 9, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -751,7 +751,7 @@ "id": 45, "reelId": 9, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -768,7 +768,7 @@ "id": 46, "reelId": 10, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -785,7 +785,7 @@ "id": 47, "reelId": 10, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -802,7 +802,7 @@ "id": 48, "reelId": 10, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -819,7 +819,7 @@ "id": 49, "reelId": 10, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -836,7 +836,7 @@ "id": 50, "reelId": 10, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -853,7 +853,7 @@ "id": 51, "reelId": 11, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -870,7 +870,7 @@ "id": 52, "reelId": 11, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -887,7 +887,7 @@ "id": 53, "reelId": 11, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -904,7 +904,7 @@ "id": 54, "reelId": 11, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -921,7 +921,7 @@ "id": 55, "reelId": 11, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -938,7 +938,7 @@ "id": 56, "reelId": 12, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -955,7 +955,7 @@ "id": 57, "reelId": 12, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -972,7 +972,7 @@ "id": 58, "reelId": 12, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -989,7 +989,7 @@ "id": 59, "reelId": 12, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1006,7 +1006,7 @@ "id": 60, "reelId": 12, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1023,7 +1023,7 @@ "id": 61, "reelId": 13, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1040,7 +1040,7 @@ "id": 62, "reelId": 13, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1057,7 +1057,7 @@ "id": 63, "reelId": 13, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1074,7 +1074,7 @@ "id": 64, "reelId": 13, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1091,7 +1091,7 @@ "id": 65, "reelId": 13, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1108,7 +1108,7 @@ "id": 66, "reelId": 14, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1125,7 +1125,7 @@ "id": 67, "reelId": 14, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1142,7 +1142,7 @@ "id": 68, "reelId": 14, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1159,7 +1159,7 @@ "id": 69, "reelId": 14, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1176,7 +1176,7 @@ "id": 70, "reelId": 14, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1193,7 +1193,7 @@ "id": 71, "reelId": 15, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1210,7 +1210,7 @@ "id": 72, "reelId": 15, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1227,7 +1227,7 @@ "id": 73, "reelId": 15, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1244,7 +1244,7 @@ "id": 74, "reelId": 15, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1261,7 +1261,7 @@ "id": 75, "reelId": 15, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1278,7 +1278,7 @@ "id": 76, "reelId": 16, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1295,7 +1295,7 @@ "id": 77, "reelId": 16, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1312,7 +1312,7 @@ "id": 78, "reelId": 16, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1329,7 +1329,7 @@ "id": 79, "reelId": 16, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1346,7 +1346,7 @@ "id": 80, "reelId": 16, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1363,7 +1363,7 @@ "id": 81, "reelId": 17, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1380,7 +1380,7 @@ "id": 82, "reelId": 17, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1397,7 +1397,7 @@ "id": 83, "reelId": 17, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1414,7 +1414,7 @@ "id": 84, "reelId": 17, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1431,7 +1431,7 @@ "id": 85, "reelId": 17, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1448,7 +1448,7 @@ "id": 86, "reelId": 18, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1465,7 +1465,7 @@ "id": 87, "reelId": 18, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1482,7 +1482,7 @@ "id": 88, "reelId": 18, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1499,7 +1499,7 @@ "id": 89, "reelId": 18, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1516,7 +1516,7 @@ "id": 90, "reelId": 18, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1533,7 +1533,7 @@ "id": 91, "reelId": 19, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1550,7 +1550,7 @@ "id": 92, "reelId": 19, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1567,7 +1567,7 @@ "id": 93, "reelId": 19, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1584,7 +1584,7 @@ "id": 94, "reelId": 19, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1601,7 +1601,7 @@ "id": 95, "reelId": 19, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1618,7 +1618,7 @@ "id": 96, "reelId": 20, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1635,7 +1635,7 @@ "id": 97, "reelId": 20, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1652,7 +1652,7 @@ "id": 98, "reelId": 20, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1669,7 +1669,7 @@ "id": 99, "reelId": 20, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1686,7 +1686,7 @@ "id": 100, "reelId": 20, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1703,7 +1703,7 @@ "id": 101, "reelId": 21, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1720,7 +1720,7 @@ "id": 102, "reelId": 21, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1737,7 +1737,7 @@ "id": 103, "reelId": 21, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1754,7 +1754,7 @@ "id": 104, "reelId": 21, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1771,7 +1771,7 @@ "id": 105, "reelId": 21, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1788,7 +1788,7 @@ "id": 106, "reelId": 22, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1805,7 +1805,7 @@ "id": 107, "reelId": 22, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1822,7 +1822,7 @@ "id": 108, "reelId": 22, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1839,7 +1839,7 @@ "id": 109, "reelId": 22, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1856,7 +1856,7 @@ "id": 110, "reelId": 22, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1873,7 +1873,7 @@ "id": 111, "reelId": 23, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1890,7 +1890,7 @@ "id": 112, "reelId": 23, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1907,7 +1907,7 @@ "id": 113, "reelId": 23, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1924,7 +1924,7 @@ "id": 114, "reelId": 23, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1941,7 +1941,7 @@ "id": 115, "reelId": 23, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1958,7 +1958,7 @@ "id": 116, "reelId": 24, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1975,7 +1975,7 @@ "id": 117, "reelId": 24, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -1992,7 +1992,7 @@ "id": 118, "reelId": 24, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2009,7 +2009,7 @@ "id": 119, "reelId": 24, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2026,7 +2026,7 @@ "id": 120, "reelId": 24, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2043,7 +2043,7 @@ "id": 121, "reelId": 25, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2060,7 +2060,7 @@ "id": 122, "reelId": 25, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2077,7 +2077,7 @@ "id": 123, "reelId": 25, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2094,7 +2094,7 @@ "id": 124, "reelId": 25, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2111,7 +2111,7 @@ "id": 125, "reelId": 25, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2128,7 +2128,7 @@ "id": 126, "reelId": 26, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2145,7 +2145,7 @@ "id": 127, "reelId": 26, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2162,7 +2162,7 @@ "id": 128, "reelId": 26, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2179,7 +2179,7 @@ "id": 129, "reelId": 26, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2196,7 +2196,7 @@ "id": 130, "reelId": 26, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2213,7 +2213,7 @@ "id": 131, "reelId": 27, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2230,7 +2230,7 @@ "id": 132, "reelId": 27, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2247,7 +2247,7 @@ "id": 133, "reelId": 27, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2264,7 +2264,7 @@ "id": 134, "reelId": 27, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2281,7 +2281,7 @@ "id": 135, "reelId": 27, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2298,7 +2298,7 @@ "id": 136, "reelId": 28, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2315,7 +2315,7 @@ "id": 137, "reelId": 28, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2332,7 +2332,7 @@ "id": 138, "reelId": 28, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2349,7 +2349,7 @@ "id": 139, "reelId": 28, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2366,7 +2366,7 @@ "id": 140, "reelId": 28, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2383,7 +2383,7 @@ "id": 141, "reelId": 29, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2400,7 +2400,7 @@ "id": 142, "reelId": 29, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2417,7 +2417,7 @@ "id": 143, "reelId": 29, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2434,7 +2434,7 @@ "id": 144, "reelId": 29, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2451,7 +2451,7 @@ "id": 145, "reelId": 29, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2468,7 +2468,7 @@ "id": 146, "reelId": 30, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2485,7 +2485,7 @@ "id": 147, "reelId": 30, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2502,7 +2502,7 @@ "id": 148, "reelId": 30, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2519,7 +2519,7 @@ "id": 149, "reelId": 30, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2536,7 +2536,7 @@ "id": 150, "reelId": 30, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2553,7 +2553,7 @@ "id": 151, "reelId": 31, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2570,7 +2570,7 @@ "id": 152, "reelId": 31, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2587,7 +2587,7 @@ "id": 153, "reelId": 31, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2604,7 +2604,7 @@ "id": 154, "reelId": 31, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2621,7 +2621,7 @@ "id": 155, "reelId": 31, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2638,7 +2638,7 @@ "id": 156, "reelId": 32, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2655,7 +2655,7 @@ "id": 157, "reelId": 32, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2672,7 +2672,7 @@ "id": 158, "reelId": 32, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2689,7 +2689,7 @@ "id": 159, "reelId": 32, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2706,7 +2706,7 @@ "id": 160, "reelId": 32, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2723,7 +2723,7 @@ "id": 161, "reelId": 33, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2740,7 +2740,7 @@ "id": 162, "reelId": 33, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2757,7 +2757,7 @@ "id": 163, "reelId": 33, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2774,7 +2774,7 @@ "id": 164, "reelId": 33, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2791,7 +2791,7 @@ "id": 165, "reelId": 33, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2808,7 +2808,7 @@ "id": 166, "reelId": 34, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2825,7 +2825,7 @@ "id": 167, "reelId": 34, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2842,7 +2842,7 @@ "id": 168, "reelId": 34, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2859,7 +2859,7 @@ "id": 169, "reelId": 34, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2876,7 +2876,7 @@ "id": 170, "reelId": 34, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2893,7 +2893,7 @@ "id": 171, "reelId": 35, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2910,7 +2910,7 @@ "id": 172, "reelId": 35, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2927,7 +2927,7 @@ "id": 173, "reelId": 35, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2944,7 +2944,7 @@ "id": 174, "reelId": 35, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2961,7 +2961,7 @@ "id": 175, "reelId": 35, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2978,7 +2978,7 @@ "id": 176, "reelId": 36, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -2995,7 +2995,7 @@ "id": 177, "reelId": 36, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3012,7 +3012,7 @@ "id": 178, "reelId": 36, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3029,7 +3029,7 @@ "id": 179, "reelId": 36, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3046,7 +3046,7 @@ "id": 180, "reelId": 36, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3063,7 +3063,7 @@ "id": 181, "reelId": 37, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3080,7 +3080,7 @@ "id": 182, "reelId": 37, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3097,7 +3097,7 @@ "id": 183, "reelId": 37, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3114,7 +3114,7 @@ "id": 184, "reelId": 37, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3131,7 +3131,7 @@ "id": 185, "reelId": 37, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3148,7 +3148,7 @@ "id": 186, "reelId": 38, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3165,7 +3165,7 @@ "id": 187, "reelId": 38, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3182,7 +3182,7 @@ "id": 188, "reelId": 38, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3199,7 +3199,7 @@ "id": 189, "reelId": 38, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3216,7 +3216,7 @@ "id": 190, "reelId": 38, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3233,7 +3233,7 @@ "id": 191, "reelId": 39, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3250,7 +3250,7 @@ "id": 192, "reelId": 39, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3267,7 +3267,7 @@ "id": 193, "reelId": 39, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3284,7 +3284,7 @@ "id": 194, "reelId": 39, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3301,7 +3301,7 @@ "id": 195, "reelId": 39, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3318,7 +3318,7 @@ "id": 196, "reelId": 40, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3335,7 +3335,7 @@ "id": 197, "reelId": 40, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3352,7 +3352,7 @@ "id": 198, "reelId": 40, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3369,7 +3369,7 @@ "id": 199, "reelId": 40, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3386,7 +3386,7 @@ "id": 200, "reelId": 40, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3403,7 +3403,7 @@ "id": 201, "reelId": 41, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3420,7 +3420,7 @@ "id": 202, "reelId": 41, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3437,7 +3437,7 @@ "id": 203, "reelId": 41, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3454,7 +3454,7 @@ "id": 204, "reelId": 41, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3471,7 +3471,7 @@ "id": 205, "reelId": 41, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3488,7 +3488,7 @@ "id": 206, "reelId": 42, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3505,7 +3505,7 @@ "id": 207, "reelId": 42, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3522,7 +3522,7 @@ "id": 208, "reelId": 42, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3539,7 +3539,7 @@ "id": 209, "reelId": 42, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3556,7 +3556,7 @@ "id": 210, "reelId": 42, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3573,7 +3573,7 @@ "id": 211, "reelId": 43, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3590,7 +3590,7 @@ "id": 212, "reelId": 43, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3607,7 +3607,7 @@ "id": 213, "reelId": 43, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3624,7 +3624,7 @@ "id": 214, "reelId": 43, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3641,7 +3641,7 @@ "id": 215, "reelId": 43, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3658,7 +3658,7 @@ "id": 216, "reelId": 44, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3675,7 +3675,7 @@ "id": 217, "reelId": 44, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3692,7 +3692,7 @@ "id": 218, "reelId": 44, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3709,7 +3709,7 @@ "id": 219, "reelId": 44, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3726,7 +3726,7 @@ "id": 220, "reelId": 44, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3743,7 +3743,7 @@ "id": 221, "reelId": 45, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3760,7 +3760,7 @@ "id": 222, "reelId": 45, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3777,7 +3777,7 @@ "id": 223, "reelId": 45, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3794,7 +3794,7 @@ "id": 224, "reelId": 45, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3811,7 +3811,7 @@ "id": 225, "reelId": 45, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3828,7 +3828,7 @@ "id": 226, "reelId": 46, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3845,7 +3845,7 @@ "id": 227, "reelId": 46, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3862,7 +3862,7 @@ "id": 228, "reelId": 46, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3879,7 +3879,7 @@ "id": 229, "reelId": 46, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3896,7 +3896,7 @@ "id": 230, "reelId": 46, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3913,7 +3913,7 @@ "id": 231, "reelId": 47, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3930,7 +3930,7 @@ "id": 232, "reelId": 47, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3947,7 +3947,7 @@ "id": 233, "reelId": 47, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3964,7 +3964,7 @@ "id": 234, "reelId": 47, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3981,7 +3981,7 @@ "id": 235, "reelId": 47, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -3998,7 +3998,7 @@ "id": 236, "reelId": 48, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4015,7 +4015,7 @@ "id": 237, "reelId": 48, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4032,7 +4032,7 @@ "id": 238, "reelId": 48, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4049,7 +4049,7 @@ "id": 239, "reelId": 48, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4066,7 +4066,7 @@ "id": 240, "reelId": 48, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4083,7 +4083,7 @@ "id": 241, "reelId": 49, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4100,7 +4100,7 @@ "id": 242, "reelId": 49, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4117,7 +4117,7 @@ "id": 243, "reelId": 49, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4134,7 +4134,7 @@ "id": 244, "reelId": 49, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4151,7 +4151,7 @@ "id": 245, "reelId": 49, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4168,7 +4168,7 @@ "id": 246, "reelId": 50, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4185,7 +4185,7 @@ "id": 247, "reelId": 50, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4202,7 +4202,7 @@ "id": 248, "reelId": 50, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4219,7 +4219,7 @@ "id": 249, "reelId": 50, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4236,7 +4236,7 @@ "id": 250, "reelId": 50, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4253,7 +4253,7 @@ "id": 251, "reelId": 51, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4270,7 +4270,7 @@ "id": 252, "reelId": 51, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4287,7 +4287,7 @@ "id": 253, "reelId": 51, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4304,7 +4304,7 @@ "id": 254, "reelId": 51, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4321,7 +4321,7 @@ "id": 255, "reelId": 51, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4338,7 +4338,7 @@ "id": 256, "reelId": 52, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4355,7 +4355,7 @@ "id": 257, "reelId": 52, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4372,7 +4372,7 @@ "id": 258, "reelId": 52, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4389,7 +4389,7 @@ "id": 259, "reelId": 52, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4406,7 +4406,7 @@ "id": 260, "reelId": 52, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4423,7 +4423,7 @@ "id": 261, "reelId": 53, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4440,7 +4440,7 @@ "id": 262, "reelId": 53, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4457,7 +4457,7 @@ "id": 263, "reelId": 53, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4474,7 +4474,7 @@ "id": 264, "reelId": 53, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4491,7 +4491,7 @@ "id": 265, "reelId": 53, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4508,7 +4508,7 @@ "id": 266, "reelId": 54, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4525,7 +4525,7 @@ "id": 267, "reelId": 54, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4542,7 +4542,7 @@ "id": 268, "reelId": 54, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4559,7 +4559,7 @@ "id": 269, "reelId": 54, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4576,7 +4576,7 @@ "id": 270, "reelId": 54, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4593,7 +4593,7 @@ "id": 271, "reelId": 55, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4610,7 +4610,7 @@ "id": 272, "reelId": 55, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4627,7 +4627,7 @@ "id": 273, "reelId": 55, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4644,7 +4644,7 @@ "id": 274, "reelId": 55, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4661,7 +4661,7 @@ "id": 275, "reelId": 55, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4678,7 +4678,7 @@ "id": 276, "reelId": 56, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4695,7 +4695,7 @@ "id": 277, "reelId": 56, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4712,7 +4712,7 @@ "id": 278, "reelId": 56, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4729,7 +4729,7 @@ "id": 279, "reelId": 56, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4746,7 +4746,7 @@ "id": 280, "reelId": 56, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4763,7 +4763,7 @@ "id": 281, "reelId": 57, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4780,7 +4780,7 @@ "id": 282, "reelId": 57, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4797,7 +4797,7 @@ "id": 283, "reelId": 57, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4814,7 +4814,7 @@ "id": 284, "reelId": 57, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4831,7 +4831,7 @@ "id": 285, "reelId": 57, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4848,7 +4848,7 @@ "id": 286, "reelId": 58, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4865,7 +4865,7 @@ "id": 287, "reelId": 58, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4882,7 +4882,7 @@ "id": 288, "reelId": 58, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4899,7 +4899,7 @@ "id": 289, "reelId": 58, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4916,7 +4916,7 @@ "id": 290, "reelId": 58, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4933,7 +4933,7 @@ "id": 291, "reelId": 59, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4950,7 +4950,7 @@ "id": 292, "reelId": 59, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4967,7 +4967,7 @@ "id": 293, "reelId": 59, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -4984,7 +4984,7 @@ "id": 294, "reelId": 59, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5001,7 +5001,7 @@ "id": 295, "reelId": 59, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5018,7 +5018,7 @@ "id": 296, "reelId": 60, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5035,7 +5035,7 @@ "id": 297, "reelId": 60, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5052,7 +5052,7 @@ "id": 298, "reelId": 60, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5069,7 +5069,7 @@ "id": 299, "reelId": 60, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5086,7 +5086,7 @@ "id": 300, "reelId": 60, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5103,7 +5103,7 @@ "id": 301, "reelId": 61, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5120,7 +5120,7 @@ "id": 302, "reelId": 61, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5137,7 +5137,7 @@ "id": 303, "reelId": 61, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5154,7 +5154,7 @@ "id": 304, "reelId": 61, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5171,7 +5171,7 @@ "id": 305, "reelId": 61, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5188,7 +5188,7 @@ "id": 306, "reelId": 62, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5205,7 +5205,7 @@ "id": 307, "reelId": 62, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5222,7 +5222,7 @@ "id": 308, "reelId": 62, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5239,7 +5239,7 @@ "id": 309, "reelId": 62, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5256,7 +5256,7 @@ "id": 310, "reelId": 62, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5273,7 +5273,7 @@ "id": 311, "reelId": 63, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5290,7 +5290,7 @@ "id": 312, "reelId": 63, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5307,7 +5307,7 @@ "id": 313, "reelId": 63, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5324,7 +5324,7 @@ "id": 314, "reelId": 63, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5341,7 +5341,7 @@ "id": 315, "reelId": 63, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5358,7 +5358,7 @@ "id": 316, "reelId": 64, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5375,7 +5375,7 @@ "id": 317, "reelId": 64, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5392,7 +5392,7 @@ "id": 318, "reelId": 64, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5409,7 +5409,7 @@ "id": 319, "reelId": 64, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5426,7 +5426,7 @@ "id": 320, "reelId": 64, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5443,7 +5443,7 @@ "id": 321, "reelId": 65, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5460,7 +5460,7 @@ "id": 322, "reelId": 65, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5477,7 +5477,7 @@ "id": 323, "reelId": 65, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5494,7 +5494,7 @@ "id": 324, "reelId": 65, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5511,7 +5511,7 @@ "id": 325, "reelId": 65, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5528,7 +5528,7 @@ "id": 326, "reelId": 66, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5545,7 +5545,7 @@ "id": 327, "reelId": 66, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5562,7 +5562,7 @@ "id": 328, "reelId": 66, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5579,7 +5579,7 @@ "id": 329, "reelId": 66, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5596,7 +5596,7 @@ "id": 330, "reelId": 66, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5613,7 +5613,7 @@ "id": 331, "reelId": 67, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5630,7 +5630,7 @@ "id": 332, "reelId": 67, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5647,7 +5647,7 @@ "id": 333, "reelId": 67, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5664,7 +5664,7 @@ "id": 334, "reelId": 67, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5681,7 +5681,7 @@ "id": 335, "reelId": 67, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5698,7 +5698,7 @@ "id": 336, "reelId": 68, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5715,7 +5715,7 @@ "id": 337, "reelId": 68, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5732,7 +5732,7 @@ "id": 338, "reelId": 68, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5749,7 +5749,7 @@ "id": 339, "reelId": 68, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5766,7 +5766,7 @@ "id": 340, "reelId": 68, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5783,7 +5783,7 @@ "id": 341, "reelId": 69, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5800,7 +5800,7 @@ "id": 342, "reelId": 69, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5817,7 +5817,7 @@ "id": 343, "reelId": 69, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5834,7 +5834,7 @@ "id": 344, "reelId": 69, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5851,7 +5851,7 @@ "id": 345, "reelId": 69, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5868,7 +5868,7 @@ "id": 346, "reelId": 70, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5885,7 +5885,7 @@ "id": 347, "reelId": 70, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5902,7 +5902,7 @@ "id": 348, "reelId": 70, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5919,7 +5919,7 @@ "id": 349, "reelId": 70, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5936,7 +5936,7 @@ "id": 350, "reelId": 70, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5953,7 +5953,7 @@ "id": 351, "reelId": 71, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5970,7 +5970,7 @@ "id": 352, "reelId": 71, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -5987,7 +5987,7 @@ "id": 353, "reelId": 71, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6004,7 +6004,7 @@ "id": 354, "reelId": 71, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6021,7 +6021,7 @@ "id": 355, "reelId": 71, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6038,7 +6038,7 @@ "id": 356, "reelId": 72, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6055,7 +6055,7 @@ "id": 357, "reelId": 72, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6072,7 +6072,7 @@ "id": 358, "reelId": 72, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6089,7 +6089,7 @@ "id": 359, "reelId": 72, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6106,7 +6106,7 @@ "id": 360, "reelId": 72, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6123,7 +6123,7 @@ "id": 361, "reelId": 73, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6140,7 +6140,7 @@ "id": 362, "reelId": 73, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6157,7 +6157,7 @@ "id": 363, "reelId": 73, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6174,7 +6174,7 @@ "id": 364, "reelId": 73, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6191,7 +6191,7 @@ "id": 365, "reelId": 73, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6208,7 +6208,7 @@ "id": 366, "reelId": 74, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6225,7 +6225,7 @@ "id": 367, "reelId": 74, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6242,7 +6242,7 @@ "id": 368, "reelId": 74, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6259,7 +6259,7 @@ "id": 369, "reelId": 74, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6276,7 +6276,7 @@ "id": 370, "reelId": 74, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6293,7 +6293,7 @@ "id": 371, "reelId": 75, "proficiency_lv": 1, - "proficiency": 20, + "proficiency": 5, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6310,7 +6310,7 @@ "id": 372, "reelId": 75, "proficiency_lv": 2, - "proficiency": 40, + "proficiency": 10, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6327,7 +6327,7 @@ "id": 373, "reelId": 75, "proficiency_lv": 3, - "proficiency": 60, + "proficiency": 15, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6344,7 +6344,7 @@ "id": 374, "reelId": 75, "proficiency_lv": 4, - "proficiency": 80, + "proficiency": 20, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" @@ -6361,7 +6361,7 @@ "id": 375, "reelId": 75, "proficiency_lv": 5, - "proficiency": 100, + "proficiency": 25, "title_text": { "key": "newsmithy_proficiency_title_text", "text": "lv.{0}:熟练度{1}" diff --git a/bin/json/game_worldtask.json b/bin/json/game_worldtask.json index 4d976582e..b30e3e3d8 100644 --- a/bin/json/game_worldtask.json +++ b/bin/json/game_worldtask.json @@ -8,12 +8,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { "key": "Mainline_Tasks_1", - "text": "初来乍到" + "text": "主线任务1" }, "task_display": { "key": "story_80", @@ -45,12 +45,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { "key": "Mainline_Tasks_2", - "text": "不测风云" + "text": "主线任务2" }, "task_display": { "key": "story_80", @@ -82,12 +82,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { "key": "Mainline_Tasks_3", - "text": "雨过天晴" + "text": "主线任务3" }, "task_display": { "key": "story_80", @@ -117,12 +117,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { - "key": "story_80", - "text": "1" + "key": "Mainline_Tasks_4", + "text": "主线任务4" }, "task_display": { "key": "story_80", @@ -152,12 +152,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { - "key": "story_80", - "text": "1" + "key": "Mainline_Tasks_5", + "text": "主线任务5" }, "task_display": { "key": "story_80", @@ -187,12 +187,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { - "key": "story_80", - "text": "1" + "key": "Mainline_Tasks_6", + "text": "主线任务6" }, "task_display": { "key": "story_80", @@ -222,12 +222,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { - "key": "story_80", - "text": "1" + "key": "Mainline_Tasks_7", + "text": "主线任务7" }, "task_display": { "key": "story_80", @@ -257,12 +257,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { - "key": "story_80", - "text": "1" + "key": "Mainline_Tasks_8", + "text": "主线任务8" }, "task_display": { "key": "story_80", @@ -292,12 +292,12 @@ "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { - "key": "story_80", - "text": "1" + "key": "Mainline_Tasks_9", + "text": "主线任务9" }, "task_display": { "key": "story_80", @@ -322,17 +322,17 @@ "key": 20100, "lock": 1, "ontxe": 20090, - "id_after": 30010, + "id_after": 0, "group": 2, "des": 2, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Mainline_Tasks", "text": "1" }, "task_name": { - "key": "story_80", - "text": "1" + "key": "Mainline_Tasks_10", + "text": "主线任务10" }, "task_display": { "key": "story_80", @@ -362,11 +362,11 @@ "des": 3, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Side_Quest", "text": "1" }, "task_name": { - "key": "story_80", + "key": "WuGuanSceneTask_1", "text": "1" }, "task_display": { @@ -392,24 +392,26 @@ "key": 40010, "lock": 1, "ontxe": 20020, - "id_after": 0, + "id_after": 40020, "group": 4, "des": 3, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Side_Quest", "text": "1" }, "task_name": { - "key": "story_80", + "key": "SmithyScene_1", "text": "1" }, "task_display": { "key": "story_80", "text": "1" }, - "npc": 0, - "completetask": [], + "npc": 70020, + "completetask": [ + 0 + ], "deliver_npc": 0, "auto_accept": 0, "reword": [ @@ -422,28 +424,30 @@ "module": [] }, { - "key": 50010, + "key": 40020, "lock": 1, - "ontxe": 20030, + "ontxe": 40010, "id_after": 0, - "group": 5, + "group": 4, "des": 3, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Side_Quest", "text": "1" }, "task_name": { - "key": "story_80", + "key": "SmithyScene_1_1", "text": "1" }, "task_display": { "key": "story_80", "text": "1" }, - "npc": 0, - "completetask": [], - "deliver_npc": 0, + "npc": 70021, + "completetask": [ + 308 + ], + "deliver_npc": 70023, "auto_accept": 0, "reword": [ { @@ -454,6 +458,76 @@ ], "module": [] }, + { + "key": 50010, + "lock": 1, + "ontxe": 20030, + "id_after": 50011, + "group": 5, + "des": 3, + "icon": "", + "task_Tname": { + "key": "Side_Quest", + "text": "1" + }, + "task_name": { + "key": "SmithyScene_2", + "text": "1" + }, + "task_display": { + "key": "story_80", + "text": "1" + }, + "npc": 70030, + "completetask": [ + 0 + ], + "deliver_npc": 0, + "auto_accept": 0, + "reword": [ + { + "a": "item", + "t": "110001", + "n": 113 + } + ], + "module": [] + }, + { + "key": 50011, + "lock": 1, + "ontxe": 50010, + "id_after": 0, + "group": 5, + "des": 3, + "icon": "", + "task_Tname": { + "key": "Side_Quest", + "text": "1" + }, + "task_name": { + "key": "SmithyScene_2_1", + "text": "1" + }, + "task_display": { + "key": "story_80", + "text": "1" + }, + "npc": 70031, + "completetask": [ + 309 + ], + "deliver_npc": 70033, + "auto_accept": 0, + "reword": [ + { + "a": "item", + "t": "110001", + "n": 114 + } + ], + "module": [] + }, { "key": 60010, "lock": 1, @@ -463,26 +537,28 @@ "des": 3, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Side_Quest", "text": "1" }, "task_name": { - "key": "story_80", + "key": "WuGuanSceneTask_2", "text": "1" }, "task_display": { "key": "story_80", "text": "1" }, - "npc": 0, - "completetask": [], + "npc": 70040, + "completetask": [ + 0 + ], "deliver_npc": 0, "auto_accept": 0, "reword": [ { "a": "item", "t": "110001", - "n": 113 + "n": 115 } ], "module": [] @@ -496,26 +572,28 @@ "des": 3, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Side_Quest", "text": "1" }, "task_name": { - "key": "story_80", + "key": "WuGuanSceneTask_3", "text": "1" }, "task_display": { "key": "story_80", "text": "1" }, - "npc": 0, - "completetask": [], + "npc": 70050, + "completetask": [ + 0 + ], "deliver_npc": 0, "auto_accept": 0, "reword": [ { "a": "item", "t": "110001", - "n": 114 + "n": 116 } ], "module": [] @@ -529,26 +607,28 @@ "des": 3, "icon": "", "task_Tname": { - "key": "story_80", + "key": "Side_Quest", "text": "1" }, "task_name": { - "key": "story_80", + "key": "SmithyScene_3", "text": "1" }, "task_display": { "key": "story_80", "text": "1" }, - "npc": 0, - "completetask": [], + "npc": 70060, + "completetask": [ + 0 + ], "deliver_npc": 0, "auto_accept": 0, "reword": [ { "a": "item", "t": "110001", - "n": 115 + "n": 117 } ], "module": [] @@ -566,7 +646,7 @@ "text": "1" }, "task_name": { - "key": "story_80", + "key": "Daily_tasks", "text": "1" }, "task_display": { @@ -601,7 +681,7 @@ "text": "1" }, "task_name": { - "key": "story_80", + "key": "Weekly_Tasks", "text": "1" }, "task_display": { diff --git a/sys/configure/structs/Game.RdtaskCondiData.go b/sys/configure/structs/Game.RdtaskCondiData.go index 9322f9c18..5359740dc 100644 --- a/sys/configure/structs/Game.RdtaskCondiData.go +++ b/sys/configure/structs/Game.RdtaskCondiData.go @@ -16,6 +16,7 @@ type GameRdtaskCondiData struct { Tasktxt string Type int32 Valid int32 + NPC int32 Data1 int32 Data2 int32 Data3 int32 @@ -35,6 +36,7 @@ func (_v *GameRdtaskCondiData)Deserialize(_buf map[string]interface{}) (err erro { var _ok_ bool; if _v.Tasktxt, _ok_ = _buf["tasktxt"].(string); !_ok_ { err = errors.New("tasktxt error"); return } } { 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["data1"].(float64); !_ok_ { err = errors.New("data1 error"); return }; _v.Data1 = int32(_tempNum_) } { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["data2"].(float64); !_ok_ { err = errors.New("data2 error"); return }; _v.Data2 = int32(_tempNum_) } { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["data3"].(float64); !_ok_ { err = errors.New("data3 error"); return }; _v.Data3 = int32(_tempNum_) }