Merge branches 'master' and 'master' of http://60.1.1.230/backend/jieling_protocol
commit
75dc58d651
|
|
@ -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 ;
|
||||
|
|
|
|||
|
|
@ -94,4 +94,18 @@ import "CommonProto.proto";
|
|||
optional int32 pokemonId = 1; //要进阶异妖的id
|
||||
}
|
||||
|
||||
message RingFireLoadRequest{//天赋升级
|
||||
optional int32 pokemonId =1;//天赋异妖id
|
||||
optional int32 comonpentId =2; // 天赋组件id
|
||||
}
|
||||
|
||||
message RingFirAdvanceRequest{ //天赋异妖进阶
|
||||
optional int32 pokemonId = 1; //天赋要进阶异妖的id
|
||||
}
|
||||
|
||||
message GetAllRingFireResponse{
|
||||
repeated RingFireInfo ringFireInfo =1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
@ -232,6 +235,12 @@ enum MessageType{
|
|||
|
||||
RENAME_REQUEST = 11704; // 修改名字
|
||||
RENAME_RESPONSE = 11705;
|
||||
|
||||
RINGFIRE_LOAD_REQUEST = 11706; //天赋异妖组件放置
|
||||
RINGFIRE_LOAD_RESPONSE = 11707;
|
||||
|
||||
RINGFIRE_ADVANCED_REQUEST = 11708; //天赋异妖进阶
|
||||
RINGFIRE_ADVANCED_RESPONSE = 11709;
|
||||
// S 11800
|
||||
SUCCESS_RESPONSE = 11800; // 通用成功回复
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue