Skip to content

Commit

Permalink
Remove id from levels
Browse files Browse the repository at this point in the history
  • Loading branch information
lotuuu committed May 13, 2024
1 parent 8a31358 commit 946ea28
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions apps/serialization/gateway.proto
Original file line number Diff line number Diff line change
Expand Up @@ -181,22 +181,20 @@ syntax = "proto3";
}

message KalineTreeLevel {
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;
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;
}

message DungeonSettlementLevel {
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;
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;
}

message SuperCampaignProgresses {
Expand Down

0 comments on commit 946ea28

Please sign in to comment.