mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 06:47:00 -05:00
21 lines
491 B
Protocol Buffer
Vendored
21 lines
491 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PokemonData.proto";
|
|
import "POGOProtos/Data/Capture/CaptureProbability.proto";
|
|
|
|
message DiskEncounterResponse {
|
|
Result result = 1;
|
|
.POGOProtos.Data.PokemonData pokemon_data = 2;
|
|
.POGOProtos.Data.Capture.CaptureProbability capture_probability = 3;
|
|
|
|
enum Result {
|
|
UNKNOWN = 0;
|
|
SUCCESS = 1;
|
|
NOT_AVAILABLE = 2;
|
|
NOT_IN_RANGE = 3;
|
|
ENCOUNTER_ALREADY_FINISHED = 4;
|
|
POKEMON_INVENTORY_FULL = 5;
|
|
}
|
|
}
|