Skip to content

Commit

Permalink
Restore gateway.proto KalineTreeLevel and DungeonSettlementLevel chan…
Browse files Browse the repository at this point in the history
…ges (#620)
  • Loading branch information
lotuuu authored May 14, 2024
1 parent fb0e523 commit df29d15
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions apps/serialization/gateway.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit df29d15

Please sign in to comment.