Merge branch 'master_test_gn_fabao' into master_test_gn
commit
941aad2610
|
|
@ -1175,6 +1175,12 @@ option optimize_for = SPEED;
|
|||
optional int32 leaveGetRewardDays = 3; //还可以领取了几天奖励
|
||||
}
|
||||
|
||||
//法宝之魂信息
|
||||
message FaBaoSoulInfo{
|
||||
optional int32 id = 1;//法宝id
|
||||
optional int32 level = 2;//等级
|
||||
}
|
||||
|
||||
//灵脉秘境
|
||||
message LingMaiSecret{
|
||||
optional int32 id = 1; //灵脉id
|
||||
|
|
|
|||
|
|
@ -480,6 +480,12 @@ import "CommonProto.proto";
|
|||
optional int32 skillId = 1;
|
||||
}
|
||||
|
||||
//法宝之魂升级协议
|
||||
message FaBaoSoulUpLvRequest{
|
||||
optional int32 id = 1;
|
||||
optional int32 level = 2;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1125,6 +1125,8 @@ enum MessageType{
|
|||
HERO_GOD_SOUL_BIND_REQUEST = 20211;//神将绑定神魂请求
|
||||
HERO_GOD_SOUL_BIND_RESPONSE = 20212;
|
||||
|
||||
FA_BAO_SOUL_UPLV_REQUEST = 20213;//法宝之魂升级协议
|
||||
FA_BAO_SOUL_UPLV_RESPONSE = 20214;
|
||||
|
||||
|
||||
//30000以后 新增协议号使用协议名定义 协议号自动映射
|
||||
|
|
|
|||
|
|
@ -88,6 +88,7 @@ import "CommonProto.proto";
|
|||
optional int32 serverOpenTime = 47; // 服务器开服时间
|
||||
optional int32 xiuweiLevel = 48; // 主角修为等级
|
||||
repeated PracticeSkillInfo practiceSkillInfos = 49;//修行技能数据
|
||||
repeated FaBaoSoulInfo FaBaoSoulInfos = 50;//法宝之魂数据
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue