From 52e7d6325666c0a57067f67f96e623db04e302ad Mon Sep 17 00:00:00 2001 From: duhui Date: Tue, 16 Nov 2021 16:08:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BA=AB=E5=A4=96=E5=8C=96=E8=BA=AB=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 6 ++++++ protos/HeroInfoProto.proto | 13 ++++++++++--- protos/MessageTypeProto.proto | 8 ++++++++ 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index e68b396..a405b5e 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -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;// 状态 + } diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 82afe0f..3f25d2b 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -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;//位置 + } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 796fb90..9fa6db5 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1345,6 +1345,14 @@ enum MessageType{ // 御剑飞行:信息,奖励,竞猜统一返回 RidingSwardInfoResponse = 3050017; + + + // 身外化身 + GetTransformationRequest = 3050020; + GetTransformationResponse = 3050021; + + UpOrDownTransformationRequest = 3050022; + //周卡 WeekCardInfoRequest = 3050030;