mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-03-21 17:34:27 -05:00
11 lines
305 B
Protocol Buffer
11 lines
305 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Data.Capture;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message CaptureProbability {
|
|
repeated .POGOProtos.Inventory.Item.ItemId pokeball_type = 1 [packed=true];
|
|
repeated float capture_probability = 2 [packed=true];
|
|
double reticle_difficulty_scale = 12;
|
|
}
|