From 4294c595b8c459c03826ef15423bb25617c8c1f4 Mon Sep 17 00:00:00 2001 From: lotuuu Date: Tue, 14 May 2024 18:01:10 -0300 Subject: [PATCH] Restore gateway.proto KalineTreeLevel and DungeonSettlementLevel changes --- apps/serialization/gateway.proto | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/apps/serialization/gateway.proto b/apps/serialization/gateway.proto index 78679942b..62daba4c6 100644 --- a/apps/serialization/gateway.proto +++ b/apps/serialization/gateway.proto @@ -181,20 +181,22 @@ syntax = "proto3"; } message KalineTreeLevel { - uint64 level = 1; - uint64 fertilizer_level_up_cost = 2; - uint64 gold_level_up_cost = 3; - repeated string unlock_features = 4; - repeated AfkRewardRate afk_reward_rates = 5; + string id = 1; + uint64 level = 2; + uint64 fertilizer_level_up_cost = 3; + uint64 gold_level_up_cost = 4; + repeated string unlock_features = 5; + repeated AfkRewardRate afk_reward_rates = 6; } - + message DungeonSettlementLevel { - uint64 level = 1; - repeated CurrencyCost upgrade_costs = 2; - uint64 max_dungeon = 3; - uint64 max_factional = 4; - uint64 supply_limit = 5; - repeated AfkRewardRate afk_reward_rates = 6; + string id = 1; + uint64 level = 2; + repeated CurrencyCost upgrade_costs = 3; + uint64 max_dungeon = 4; + uint64 max_factional = 5; + uint64 supply_limit = 6; + repeated AfkRewardRate afk_reward_rates = 7; } message SuperCampaignProgresses {