mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-22 09:27:22 -05:00
12 lines
310 B
Protocol Buffer
Vendored
12 lines
310 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Settings;
|
|
|
|
message FortSettings {
|
|
double interaction_range_meters = 1;
|
|
int32 max_total_deployed_pokemon = 2;
|
|
int32 max_player_deployed_pokemon = 3;
|
|
double deploy_stamina_multiplier = 4;
|
|
double deploy_attack_multiplier = 5;
|
|
double far_interaction_range_meters = 6;
|
|
}
|