view hero detail
parent
f8215aeff0
commit
e5d161ad29
|
@ -707,6 +707,9 @@ enum MessageType{
|
|||
|
||||
VIP_TAKE_REWARD_REQUEST = 12104; //领取vip等级或每日礼包
|
||||
VIP_TAKE_REWARD_RESPONSE = 12105;
|
||||
|
||||
VIEW_HERO_INFO_REQUEST = 12106; // 查看英雄详情信息
|
||||
VIEW_HERO_INFO_RESPONSE = 12107;
|
||||
// W 12200
|
||||
WORKSHOP_FOUNDATION_REQUEST = 12200; //基础打造
|
||||
WORKSHOP_FOUNDATION_RESPONSE = 12201;
|
||||
|
|
|
@ -615,4 +615,17 @@ import "CommonProto.proto";
|
|||
repeated string mailId = 1;
|
||||
}
|
||||
|
||||
|
||||
message ViewHeroInfoRequest{
|
||||
optional int32 targetUid = 1;
|
||||
optional string heroId = 2 ;// 动态id
|
||||
}
|
||||
|
||||
message ViewHeroInfoResponse{
|
||||
optional Hero hero =1;
|
||||
repeated Equip equip =2; // 英雄所穿装备、法宝、魂印
|
||||
repeated SpecialEffects SpecialEffects = 3;//属性信息
|
||||
optional int32 force = 4 ; //战力
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue