mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-07-13 06:41:12 -05:00
- 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
18 lines
389 B
Protocol Buffer
Vendored
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;
|
|
}
|
|
} |