From 0b56484e50fa48807264e8a0981eca23cd225652 Mon Sep 17 00:00:00 2001 From: wangyuan Date: Wed, 12 Jun 2019 20:13:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=A4=A9=E8=B5=8B=E5=BC=82?= =?UTF-8?q?=E5=A6=96=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 7 +++++++ protos/HeroInfoProto.proto | 5 +++++ protos/MessageTypeProto.proto | 3 +++ 3 files changed, 15 insertions(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 06c0325..5d86b10 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -189,6 +189,13 @@ option optimize_for = SPEED; optional int32 stage =2; //异妖进阶阶数 repeated Pokemoncomonpent pokemoncomonpent =3; //组件信息 } + + message RingFireInfo{ + optional int32 id = 1; //天赋异妖id + optional int32 stage =2; //天赋异妖进阶阶数 + repeated int32 comonpentId=3; //天赋当前阶级组件id + } + message WorkShopBaseInfo{ optional int32 type =1; // 1: 工坊 2:百味居 optional int32 levle =2 ; diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index c819f23..8147e94 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -103,4 +103,9 @@ import "CommonProto.proto"; optional int32 pokemonId = 1; //天赋要进阶异妖的id } + message GetAllRingFireResponse{ + repeated RingFireInfo ringFireInfo =1; + } + + diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 894a048..3250b36 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -169,6 +169,9 @@ enum MessageType{ GET_FRIEND_INFO_REQUEST = 16638; // 获取好友信息 GET_FRIEND_INFO_REPONSE = 16639; + GET_RINGFIRE_INFO_REQUEST = 16640;// 获取天赋异妖信息 + GET_RINGFIRE_INFO_RESPONSE = 16641; + // H 10700 HERO_RAND_REQQUEST = 10701; HERO_RAND_RESPONSE = 10702;