mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 23:07:41 -05:00
19 lines
552 B
Protocol Buffer
Vendored
19 lines
552 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PokemonData.proto";
|
|
import "POGOProtos/Data/Capture/CaptureProbability.proto";
|
|
|
|
message IncenseEncounterResponse {
|
|
.POGOProtos.Networking.Responses.IncenseEncounterResponse.Result result = 1;
|
|
.POGOProtos.Data.PokemonData pokemon_data = 2;
|
|
.POGOProtos.Data.Capture.CaptureProbability capture_probability = 3;
|
|
|
|
enum Result {
|
|
INCENSE_ENCOUNTER_UNKNOWN = 0;
|
|
INCENSE_ENCOUNTER_SUCCESS = 1;
|
|
INCENSE_ENCOUNTER_NOT_AVAILABLE = 2;
|
|
POKEMON_INVENTORY_FULL = 3;
|
|
}
|
|
}
|