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

16 lines
446 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Inventory;
import "POGOProtos/Inventory/Item/ItemId.proto";
import "POGOProtos/Inventory/EggIncubatorType.proto";
message EggIncubator {
string id = 1;
.POGOProtos.Inventory.Item.ItemId item_id = 2;
.POGOProtos.Inventory.EggIncubatorType incubator_type = 3;
int32 uses_remaining = 4;
uint64 pokemon_id = 5; // TODO: Check if is PokemonType
double start_km_walked = 6;
double target_km_walked = 7;
}