公会获取对手信息协议增加
parent
9af395e4da
commit
92c4569067
|
@ -62,6 +62,18 @@ import "CommonProto.proto";
|
|||
optional int32 curForce=4;//战斗力
|
||||
|
||||
}
|
||||
|
||||
message FamilyBuildBuffInfo{
|
||||
optional int32 buildId = 1;
|
||||
optional int32 buffId = 2;
|
||||
}
|
||||
|
||||
//对战信息
|
||||
message FamilyFightInfo{
|
||||
optional int32 gid = 1;
|
||||
repeated FamilyBuildBuffInfo buildBuff = 2;
|
||||
repeated FamilyUserInfo user = 3;
|
||||
}
|
||||
|
||||
message GetFamilyInfoResponse{
|
||||
optional FamilyBaseInfo familyBaseInfo =1; // 公会信息
|
||||
|
@ -188,9 +200,6 @@ import "CommonProto.proto";
|
|||
optional int32 type =1 ;//操作类型 1 :解散公会 2 : 取消解散公会
|
||||
}
|
||||
//查看当前布防信息
|
||||
message FamilyDefendViewRequest{
|
||||
optional int32 type = 1;//0为当前自己公会信息,1为对战公会信息
|
||||
}
|
||||
message FamilyDefendViewResponse{
|
||||
repeated FamilyDefendInfo info = 1;
|
||||
|
||||
|
@ -212,4 +221,8 @@ import "CommonProto.proto";
|
|||
message FamilyWalkRequest{
|
||||
repeated int32 path =1;// 行走路线
|
||||
}
|
||||
//公会战对战信息
|
||||
message FamilyFightInfoResponse{
|
||||
repeated FamilyFightInfo info=1;
|
||||
}
|
||||
|
||||
|
|
|
@ -246,6 +246,9 @@ enum MessageType{
|
|||
|
||||
FAMILY_WALK_INDICATION = 10565;
|
||||
FAMILY_QUICK_SET_DEFEND_INDICATION = 10566;
|
||||
|
||||
FAMILY_FIGHT_INFO_REQUEST = 10567;//公会对战具体信息
|
||||
FAMILY_FIGHT_INFO_RESPONSE = 10568;
|
||||
|
||||
// G 10600
|
||||
GET_PLAYERINFO_REQUEST = 10600; //
|
||||
|
|
Loading…
Reference in New Issue