diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index bf4ac66..3aa0c91 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1128,6 +1128,7 @@ enum MessageType{ GetWorldArenaRecordInfoRequest= 900007; GetWorldArenaRecordInfoResponse= 900008; + //gs --》word GetGSUserArenaInfoRequest = 900009; @@ -1141,6 +1142,11 @@ enum MessageType{ GetDeathPathRewardRequest = 900014; + ViewHeroInfoRequest = 9000015; + ViewHeroInfoResponse = 900016; + + GetPlayerOneTeamInfoRequest = 900017; + GetPlayerOneTeamInfoResponse= 900018; } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 3fc9adc..1a23459 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -497,6 +497,7 @@ import "CommonProto.proto"; message GetPlayerOneTeamInfoRequest{ optional int32 playerId = 1; optional int32 teamId = 2; + optional int32 serverId = 3; } message GetPlayerOneTeamInfoResponse{ optional TeamOneInfo teamInfo = 1; @@ -641,6 +642,7 @@ import "CommonProto.proto"; message ViewHeroInfoRequest{ optional int32 targetUid = 1; optional string heroId = 2 ;// 动态id + optional int32 serverId = 3; } message ViewHeroInfoResponse{ diff --git a/protos/gtwprotos/WorldProto.proto b/protos/gtwprotos/WorldProto.proto index 690a14b..9cc0550 100644 --- a/protos/gtwprotos/WorldProto.proto +++ b/protos/gtwprotos/WorldProto.proto @@ -146,9 +146,28 @@ import "CommonProto.proto"; repeated GuildRank ranks = 1;//所有需要发奖的公会id } + message ViewHeroInfoRequest{ + optional int32 targetUid = 1; + optional string heroId = 2 ;// 动态id + } + + message ViewHeroInfoResponse{ + optional rpc.protocols.Hero hero =1; + repeated rpc.protocols.Equip equip =2; // 英雄所穿装备、魂印(法宝不在内,放在Hero中) + repeated rpc.protocols.SpecialEffects SpecialEffects = 3;//属性信息 + optional int32 force = 4 ; //战力 + optional int32 guildSkill = 5;//公会技能 + } - - + //获取编队信息 + message GetPlayerOneTeamInfoRequest{ + optional int32 playerId = 1; + optional int32 teamId = 2; + } + message GetPlayerOneTeamInfoResponse{ + optional rpc.protocols.TeamOneInfo teamInfo = 1; + } + \ No newline at end of file