POGOProtos.Networking.Responses.CatchPokemonResponse.proto Maven / Gradle / Ivy
syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Data/Capture/CaptureAward.proto";
import "POGOProtos/Data/PokemonDisplay.proto";
message CatchPokemonResponse {
CatchStatus status = 1;
double miss_percent = 2;
fixed64 captured_pokemon_id = 3;
.POGOProtos.Data.Capture.CaptureAward capture_award = 4;
CaptureReason capture_reason = 5;
int32 display_pokedex_id = 6;
int32 throws_remaining = 7;
.POGOProtos.Data.PokemonDisplay pokemon_display = 8;
enum CatchStatus {
CATCH_ERROR = 0;
CATCH_SUCCESS = 1;
CATCH_ESCAPE = 2;
CATCH_FLEE = 3;
CATCH_MISSED = 4;
}
enum CaptureReason {
UNSET = 0;
DEFAULT = 1;
ELEMENTAL_BADGE = 2;
CRITICAL_CATCH = 3;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy