POGOserver/POGOProtos/Networking/Responses/IncenseEncounterResponse.proto
Felix bc853908e1 Update
- Adding protos
- Adding dumps
- Simple http server
- Various packets
- Added readme
2016-08-05 20:43:56 +02:00

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;
}
}