潜能协议
parent
e689a81a9b
commit
82ce751ae4
|
@ -617,4 +617,28 @@ message GiftEquipWearRequest{
|
|||
optional int32 operate = 1;//1:穿,2:脱
|
||||
optional string role = 2;//对象,0是主角,其他用英雄唯一id
|
||||
repeated int32 giftIds = 3;//礼物id列表
|
||||
}
|
||||
|
||||
// 潜能
|
||||
message PotentialUpLvRequest{
|
||||
optional string heroId = 1;// 英雄id
|
||||
optional int32 type = 2;// 类型
|
||||
}
|
||||
|
||||
message PotentialBatchUpLvRequest{
|
||||
optional string heroId = 1; // 英雄id
|
||||
optional int32 type = 2; // 类型
|
||||
}
|
||||
|
||||
message PotentialInfoResponse{
|
||||
optional int32 upLv = 1; //升级等级
|
||||
optional int32 giftLv = 2; //礼物等级
|
||||
}
|
||||
|
||||
message PotentialBackLvRequest{
|
||||
optional string heroId = 1;// 英雄id
|
||||
}
|
||||
|
||||
message PotentialBackLvResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
|
@ -93,8 +93,6 @@ message GetPlayerInfoResponse{
|
|||
repeated FaBaoSoulInfo FaBaoSoulInfos = 50;//法宝之魂数据
|
||||
repeated LifeGridInfo lifeGridInfos = 51;//命格数据
|
||||
repeated int32 giftIds = 52;//礼物装备列表
|
||||
optional int32 potentialUpLv = 53;//潜能升级等级
|
||||
optional int32 potentialGiftLv = 54;//潜能礼物等级
|
||||
}
|
||||
|
||||
|
||||
|
@ -1384,25 +1382,4 @@ message GemNewDrawResponse{
|
|||
|
||||
message GemNewInfoResponse{
|
||||
repeated GemNew gems = 1;
|
||||
}
|
||||
|
||||
// 潜能
|
||||
message PotentialUpLvRequest{
|
||||
optional int32 type = 1;//类型
|
||||
}
|
||||
|
||||
message PotentialBatchUpLvRequest{
|
||||
optional int32 type = 1;//类型
|
||||
}
|
||||
|
||||
message PotentialInfoResponse{
|
||||
optional int32 upLv = 1;//升级等级
|
||||
optional int32 giftLv = 2;//礼物等级
|
||||
}
|
||||
|
||||
message PotentialBackLvRequest{
|
||||
}
|
||||
|
||||
message PotentialBackLvResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
Loading…
Reference in New Issue