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

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