diff --git a/protos/ActivityProto.proto b/protos/ActivityProto.proto index 72202ce..4284511 100644 --- a/protos/ActivityProto.proto +++ b/protos/ActivityProto.proto @@ -49,4 +49,10 @@ import "CommonProto.proto"; optional FightData fightData = 1; // 道具 optional Drop drop = 2; + } + + // 建木神树 + message UpgradeGodTreeRequest{ + } + message UpgradeGodTreeResponse{ } \ No newline at end of file diff --git a/protos/ChatProto.proto b/protos/ChatProto.proto index 4498010..246cbca 100644 --- a/protos/ChatProto.proto +++ b/protos/ChatProto.proto @@ -17,6 +17,7 @@ message ChatInfo{ //跑马灯用 optional int32 messageType = 13; // 消息类型 1:吉运,2:勤勉 optional int32 itemId =14; // 查看道具id + //optional string item = 14; // 物品信息,用#分割 optional int32 type = 15; //0:系统 1:其他 optional int32 startTime = 16 ; // 开始时间 optional int32 endTime = 17; //结束时间 diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index ddc644f..aaf8f43 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -40,6 +40,7 @@ option optimize_for = SPEED; optional int32 ride = 22;//坐骑 optional int32 rideLevel = 23;//坐骑等级 optional int32 sex = 24;//玩家性别 0男1女 + optional int32 treeLevel = 25;// 神树等级 } message Privilege{ diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 5d55e19..cc4bebf 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1099,10 +1099,14 @@ enum MessageType{ SeletSubRewardPoolRequest = 303671;//易经宝库 SeletSubRewardPoolResponse = 303672; - //303691 - 30390 新将来袭 + //303691 - 303692 新将来袭 NewGeneralAttackRequest = 303691; NewGeneralAttackResponse = 303692; + // 303701 - 303702 建木神树 + UpgradeGodTreeRequest = 303701; + UpgradeGodTreeResponse = 303702; + }