diff --git a/bin/json/game_worldbattle.json b/bin/json/game_worldbattle.json index 41d9ccd4d..622a8094a 100644 --- a/bin/json/game_worldbattle.json +++ b/bin/json/game_worldbattle.json @@ -14,7 +14,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 102, @@ -31,7 +32,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 103, @@ -48,7 +50,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 104, @@ -65,7 +68,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 105, @@ -82,7 +86,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 106, @@ -99,7 +104,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 107, @@ -116,7 +122,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 108, @@ -133,7 +140,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 109, @@ -150,7 +158,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 110, @@ -167,7 +176,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 111, @@ -184,7 +194,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 112, @@ -201,7 +212,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 113, @@ -218,7 +230,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 114, @@ -235,7 +248,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 115, @@ -252,7 +266,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 116, @@ -269,7 +284,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 117, @@ -286,7 +302,8 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 }, { "id": 118, @@ -303,6 +320,7 @@ "EventList": [ 12, 14 - ] + ], + "playexp": 1000 } ] \ No newline at end of file diff --git a/sys/configure/structs/Game.WorldBattleData.go b/sys/configure/structs/Game.WorldBattleData.go index 3b5c89f30..a3cc32ce8 100644 --- a/sys/configure/structs/Game.WorldBattleData.go +++ b/sys/configure/structs/Game.WorldBattleData.go @@ -18,6 +18,7 @@ type GameWorldBattleData struct { LockSlots []int32 AssistTeam int32 EventList []int32 + Playexp int32 } const TypeId_GameWorldBattleData = 1096332216 @@ -86,6 +87,7 @@ func (_v *GameWorldBattleData)Deserialize(_buf map[string]interface{}) (err erro } } + { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["playexp"].(float64); !_ok_ { err = errors.New("playexp error"); return }; _v.Playexp = int32(_tempNum_) } return }