diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 2551dc3..480ca87 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -1174,6 +1174,12 @@ option optimize_for = SPEED; optional bool isBuy = 2; optional int32 leaveGetRewardDays = 3; //还可以领取了几天奖励 } + + //法宝之魂信息 + message FaBaoSoulInfo{ + optional int32 id = 1;//法宝id + optional int32 level = 2;//等级 + } //灵脉秘境 message LingMaiSecret{ diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 82afe0f..81062a5 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -480,6 +480,12 @@ import "CommonProto.proto"; optional int32 skillId = 1; } + //法宝之魂升级协议 + message FaBaoSoulUpLvRequest{ + optional int32 id = 1; + optional int32 level = 2; + } + diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 6840c0e..5596f9d 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1124,7 +1124,9 @@ 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以后 新增协议号使用协议名定义 协议号自动映射 diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index ce1ba3a..7fe9e8a 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -88,6 +88,7 @@ import "CommonProto.proto"; optional int32 serverOpenTime = 47; // 服务器开服时间 optional int32 xiuweiLevel = 48; // 主角修为等级 repeated PracticeSkillInfo practiceSkillInfos = 49;//修行技能数据 + repeated FaBaoSoulInfo FaBaoSoulInfos = 50;//法宝之魂数据 }