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

21 lines
586 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Data/Battle/BattleLog.proto";
import "POGOProtos/Data/Battle/BattlePokemonInfo.proto";
message AttackGymResponse {
.POGOProtos.Networking.Responses.AttackGymResponse.Result result = 1;
.POGOProtos.Data.Battle.BattleLog battle_log = 2;
string battle_id = 3;
.POGOProtos.Data.Battle.BattlePokemonInfo active_defender = 4;
.POGOProtos.Data.Battle.BattlePokemonInfo active_attacker = 5;
enum Result {
UNSET = 0;
SUCCESS = 1;
ERROR_INVALID_ATTACK_ACTIONS = 2;
ERROR_NOT_IN_RANGE = 3;
}
}