mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-03-21 17:34:27 -05:00
40 lines
1.1 KiB
Protocol Buffer
40 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Data;
|
|
|
|
import "POGOProtos/Enums/PokemonId.proto";
|
|
import "POGOProtos/Enums/PokemonMove.proto";
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message PokemonData {
|
|
fixed64 id = 1;
|
|
.POGOProtos.Enums.PokemonId pokemon_id = 2;
|
|
int32 cp = 3;
|
|
int32 stamina = 4;
|
|
int32 stamina_max = 5;
|
|
.POGOProtos.Enums.PokemonMove move_1 = 6;
|
|
.POGOProtos.Enums.PokemonMove move_2 = 7;
|
|
string deployed_fort_id = 8;
|
|
string owner_name = 9;
|
|
bool is_egg = 10;
|
|
double egg_km_walked_target = 11;
|
|
double egg_km_walked_start = 12;
|
|
int32 origin = 14;
|
|
float height_m = 15;
|
|
float weight_kg = 16;
|
|
int32 individual_attack = 17;
|
|
int32 individual_defense = 18;
|
|
int32 individual_stamina = 19;
|
|
float cp_multiplier = 20;
|
|
.POGOProtos.Inventory.Item.ItemId pokeball = 21;
|
|
uint64 captured_cell_id = 22;
|
|
int32 battles_attacked = 23;
|
|
int32 battles_defended = 24;
|
|
string egg_incubator_id = 25;
|
|
uint64 creation_time_ms = 26;
|
|
int32 num_upgrades = 27;
|
|
float additional_cp_multiplier = 28;
|
|
int32 favorite = 29;
|
|
string nickname = 30;
|
|
int32 from_fort = 31;
|
|
}
|