diff --git a/bin/marketserver/res/recharge@recharge.json b/bin/marketserver/res/recharge@recharge.json index f1f0ceba..a8981cf1 100644 --- a/bin/marketserver/res/recharge@recharge.json +++ b/bin/marketserver/res/recharge@recharge.json @@ -1,44 +1,36 @@ [ { "id": 1001, - "diamond": 100, + "diamond": 600, + "present_diamond": 66, "price": 1, - "max_buy_times": 1, - "first_present_diamond": 900 + "max_buy_times": 1 }, { "id": 1002, - "diamond": 200, - "price": 2, - "max_buy_times": 1, - "first_present_diamond": 900 + "diamond": 6800, + "present_diamond": 1200, + "max_buy_times": 68 }, { "id": 1003, - "diamond": 300, - "price": 3, - "max_buy_times": 1, - "first_present_diamond": 900 + "diamond": 16800, + "present_diamond": 3200, + "price": 168, + "max_buy_times": 1 }, { "id": 1004, - "diamond": 500, - "price": 5, - "max_buy_times": 1, - "first_present_diamond": 900 - }, - { - "id": 1005, - "diamond": 1000, - "price": 10, - "max_buy_times": 1, - "first_present_diamond": 900 + "diamond": 26800, + "present_diamond": 6200, + "price": 268, + "max_buy_times": 1 }, { "id": 1006, "diamond": 100, + "present_diamond": 0, "price": 1, - "max_buy_times": 9999, - "first_present_diamond": 0 + "max_buy_times": 9999 } ] diff --git a/server/marketserver/proto/mt.proto b/server/marketserver/proto/mt.proto index 19ac74ab..f69e6874 100644 --- a/server/marketserver/proto/mt.proto +++ b/server/marketserver/proto/mt.proto @@ -76,7 +76,6 @@ message Recharge optional int32 diamond = 2; optional int32 price = 3; optional int32 max_buy_times = 4; - optional int32 first_present_diamond = 5; } message Web3ServiceCluster