POGOserver/POGOProtos/Data/Logs/CatchPokemonLogEntry.proto
Felix bf4e26e338 Big update
- Added asset session downloader
- Added on off option logging request types
- Updated proto files
- Updated readme.md
- Smoother setup process
- Added various console commands
- Added claim codename packet
- Added encounter packet
- Added *fixed* download url packet
- Various changes, cant remember at all
2016-08-15 13:09:42 +02:00

18 lines
389 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Data.Logs;
import "POGOProtos/Enums/PokemonId.proto";
message CatchPokemonLogEntry {
.POGOProtos.Data.Logs.CatchPokemonLogEntry.Result result = 1;
.POGOProtos.Enums.PokemonId pokemon_id = 2;
int32 combat_points = 3;
fixed64 pokemon_data_id = 4;
enum Result {
UNSET = 0;
POKEMON_CAPTURED = 1;
POKEMON_FLED = 2;
POKEMON_HATCHED = 3;
}
}