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

19 lines
451 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Data/PokemonData.proto";
message UpgradePokemonResponse {
.POGOProtos.Networking.Responses.UpgradePokemonResponse.Result result = 1;
.POGOProtos.Data.PokemonData upgraded_pokemon = 2;
enum Result {
UNSET = 0;
SUCCESS = 1;
ERROR_POKEMON_NOT_FOUND = 2;
ERROR_INSUFFICIENT_RESOURCES = 3;
ERROR_UPGRADE_NOT_AVAILABLE = 4;
ERROR_POKEMON_IS_DEPLOYED = 5;
}
}