mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-20 00:17:20 -05:00
12 lines
279 B
Protocol Buffer
Vendored
12 lines
279 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data;
|
|
|
|
import "POGOProtos/Enums/PokemonId.proto";
|
|
|
|
message PokedexEntry {
|
|
.POGOProtos.Enums.PokemonId pokemon_id = 1;
|
|
int32 times_encountered = 2;
|
|
int32 times_captured = 3;
|
|
int32 evolution_stone_pieces = 4;
|
|
int32 evolution_stones = 5;
|
|
} |