From 50408695ca1eec6972643716ba6989bc9c120221 Mon Sep 17 00:00:00 2001 From: meixiongfeng <766881921@qq.com> Date: Fri, 19 Aug 2022 12:09:40 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/json/game_com.json | 23 ++++++++++++----------- bin/json/game_global.json | 5 +++-- sys/configure/structs/game.globalData.go | 2 ++ 3 files changed, 17 insertions(+), 13 deletions(-) diff --git a/bin/json/game_com.json b/bin/json/game_com.json index 045ab8264..93dac2336 100644 --- a/bin/json/game_com.json +++ b/bin/json/game_com.json @@ -56,52 +56,52 @@ "duplicate_removal": 1, "base_pool_cost": { "a": "item", - "t": "10001", + "t": "10018", "n": 1 }, "camp1_pool_cost": { "a": "item", - "t": "10002", + "t": "10017", "n": 1 }, "camp2_pool_cost": { "a": "item", - "t": "10003", + "t": "10017", "n": 1 }, "camp3_pool_cost": { "a": "item", - "t": "10004", + "t": "10017", "n": 1 }, "camp4_pool_cost": { "a": "item", - "t": "10005", + "t": "10017", "n": 1 }, "base_pool_10cost": { "a": "item", - "t": "10001", + "t": "10018", "n": 10 }, "camp1_pool_10cost": { "a": "item", - "t": "10002", + "t": "10017", "n": 10 }, "camp2_pool_10cost": { "a": "item", - "t": "10003", + "t": "10017", "n": 10 }, "camp3_pool_10cost": { "a": "item", - "t": "10004", + "t": "10017", "n": 10 }, "camp4_pool_10cost": { "a": "item", - "t": "10005", + "t": "10017", "n": 10 }, "camp1_pool1": "camp1_pool", @@ -134,12 +134,13 @@ "camp_pool_star3": 9000, "camp_pool_star4": 900, "camp_pool_star5": 100, - "gourmet": 500, + "gourmet": 3600, "smithy_maxplayer": 20, "smithy_maxtime": 36000, "chat_expression_small": [ "lt_bq_icon001,lt_bq_icon002,lt_bq_icon003,lt_bq_icon004,lt_bq_icon005,lt_bq_icon006,lt_bq_icon007,lt_bq_icon008,lt_bq_icon009,lt_bq_icon010,lt_bq_icon011,lt_bq_icon012" ], + "viking_num": 10, "kungfu_time": 30 } ] \ No newline at end of file diff --git a/bin/json/game_global.json b/bin/json/game_global.json index ed7f0b2c4..93dac2336 100644 --- a/bin/json/game_global.json +++ b/bin/json/game_global.json @@ -134,12 +134,13 @@ "camp_pool_star3": 9000, "camp_pool_star4": 900, "camp_pool_star5": 100, - "gourmet": 500, + "gourmet": 3600, "smithy_maxplayer": 20, "smithy_maxtime": 36000, "chat_expression_small": [ "lt_bq_icon001,lt_bq_icon002,lt_bq_icon003,lt_bq_icon004,lt_bq_icon005,lt_bq_icon006,lt_bq_icon007,lt_bq_icon008,lt_bq_icon009,lt_bq_icon010,lt_bq_icon011,lt_bq_icon012" ], - "viking_num": 10 + "viking_num": 10, + "kungfu_time": 30 } ] \ No newline at end of file diff --git a/sys/configure/structs/game.globalData.go b/sys/configure/structs/game.globalData.go index bfe394df0..035505745 100644 --- a/sys/configure/structs/game.globalData.go +++ b/sys/configure/structs/game.globalData.go @@ -73,6 +73,7 @@ type GameGlobalData struct { SmithyMaxtime int32 ChatExpressionSmall []string VikingNum int32 + KungfuTime int32 } const TypeId_GameGlobalData = 477542761 @@ -222,6 +223,7 @@ func (_v *GameGlobalData)Deserialize(_buf map[string]interface{}) (err error) { } { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["viking_num"].(float64); !_ok_ { err = errors.New("viking_num error"); return }; _v.VikingNum = int32(_tempNum_) } + { var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["kungfu_time"].(float64); !_ok_ { err = errors.New("kungfu_time error"); return }; _v.KungfuTime = int32(_tempNum_) } return }