From e689a81a9b68425701d325e4e489c01738db4cd3 Mon Sep 17 00:00:00 2001 From: "PC-202302260912\\Administrator" <1769111741@qq.com> Date: Mon, 25 Sep 2023 17:46:42 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A4=BC=E7=89=A9=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 4 +++- protos/MessageTypeProto.proto | 9 +++++++++ protos/PlayerInfoProto.proto | 23 +++++++++++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 9f3f59f..93f13a5 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -122,12 +122,14 @@ option optimize_for = SPEED; optional int32 godSoulLv=18;//神将神魂等级 optional int32 propertyId = 19;//阵营(人,佛,妖,道..) repeated SoulPos godSeals = 20;//神印 - repeated EquipIntensifyInfo equipStrong = 21;//装备位置强化信息 optional int32 equipAdvanceLv = 22;//英雄装备突破等级 repeated string faxiang = 23;//法相id repeated int32 giftEquipIds = 24;//礼物装备列表 + + optional int32 potentialUpLv = 25;//潜能升级等级 + optional int32 potentialGiftLv = 26;//潜能礼物等级 } message PokemonInfo{ diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 3a7be06..6aa6e8e 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1646,6 +1646,15 @@ enum MessageType{ // 礼物 GiftEquipWearRequest = 6000007; GiftEquipWearResponse = 6000008; + + // 潜能 + PotentialUpLvRequest = 6000009; + PotentialUpLvResponse = 6000010; + PotentialBatchUpLvRequest = 6000011; + PotentialBatchUpLvResponse = 6000012; + PotentialBackLvRequest = 6000013; + PotentialBackLvResponse = 6000014; + } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index b1693cc..4613b6f 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -93,6 +93,8 @@ message GetPlayerInfoResponse{ repeated FaBaoSoulInfo FaBaoSoulInfos = 50;//法宝之魂数据 repeated LifeGridInfo lifeGridInfos = 51;//命格数据 repeated int32 giftIds = 52;//礼物装备列表 + optional int32 potentialUpLv = 53;//潜能升级等级 + optional int32 potentialGiftLv = 54;//潜能礼物等级 } @@ -1382,4 +1384,25 @@ 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; } \ No newline at end of file