身外化身功能
parent
2e99b61df7
commit
52e7d63256
|
@ -1171,3 +1171,9 @@ option optimize_for = SPEED;
|
|||
optional int32 leaveGetRewardDays = 3; //还可以领取了几天奖励
|
||||
}
|
||||
|
||||
// 变身卡信息
|
||||
message TransformationCardInfo{
|
||||
optional int32 id = 1;//卡id
|
||||
optional int32 index = 2;// 位置
|
||||
optional int32 status = 3;// 状态
|
||||
}
|
||||
|
|
|
@ -481,9 +481,16 @@ import "CommonProto.proto";
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 身外化身
|
||||
message GetTransformationRequest{
|
||||
}
|
||||
|
||||
message GetTransformationResponse{
|
||||
repeated TransformationCardInfo list = 1;//化身列表信息
|
||||
}
|
||||
|
||||
message UpOrDownTransformationRequest{
|
||||
optional int32 id = 1;//变身卡id
|
||||
optional int32 index = 2;//位置
|
||||
}
|
||||
|
|
@ -1345,6 +1345,14 @@ enum MessageType{
|
|||
|
||||
// 御剑飞行:信息,奖励,竞猜统一返回
|
||||
RidingSwardInfoResponse = 3050017;
|
||||
|
||||
|
||||
// 身外化身
|
||||
GetTransformationRequest = 3050020;
|
||||
GetTransformationResponse = 3050021;
|
||||
|
||||
UpOrDownTransformationRequest = 3050022;
|
||||
|
||||
|
||||
//周卡
|
||||
WeekCardInfoRequest = 3050030;
|
||||
|
|
Loading…
Reference in New Issue