diff --git a/protos/ArenaInfoProto.proto b/protos/ArenaInfoProto.proto index e6aa5b0..6721308 100644 --- a/protos/ArenaInfoProto.proto +++ b/protos/ArenaInfoProto.proto @@ -222,6 +222,34 @@ import "CommonProto.proto"; optional crossYxldPlayerRecordInfo recordData = 1; } + //灵脉秘境列表 + message CrossLingmaiSecretAreaInfoRequest{ + optional int32 page =1 ;//第几页 0默认是自己当前页 + } + message CrossLingmaiSecretAreaInfoResponse{ + optional int32 state =1 ;//0未开启 1抢夺 2休战 + optional int32 myOccupyId =2 ;//自己占领的灵脉id + optional int32 myOccupyTime =3 ;//自己占领的灵脉id的时间 + optional int32 remainChangeTimes = 4 ;//剩余挑战次数 + repeated LingMaiSecret recordData = 5;//当前页的灵脉数据 + } + //灵脉秘境挑战 + message CrossLingmaiSecretAreaRequest{ + optional int32 id =1 ;//灵脉id + } + message CrossLingmaiSecretAreaResponse{ + repeated FightData fightData =1; // 战斗数据 + repeated int32 fightResult = 2 ;// 战斗结果 + } + //灵脉秘境记录 + message CrossLingmaiSecretAreaRecordRequest{ + } + message CrossLingmaiSecretAreaRecordResponse{ + repeated LingMaiSecretRecord recordData = 1; + } + + + diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index e68b396..a068930 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -1171,3 +1171,21 @@ option optimize_for = SPEED; optional int32 leaveGetRewardDays = 3; //还可以领取了几天奖励 } + //灵脉秘境 + message LingMaiSecret{ + optional int32 id = 1; //灵脉id + optional int32 uid = 2;//占领玩家id + optional string userName = 3;//玩家名字 + optional string serverName = 4;//服务器名称 + optional int32 getAwardTimeOrOccupyTime = 5; //得到奖励的时间或者占领的灵脉的时间 + } + //灵脉秘境挑战记录 + message LingMaiSecretRecord{ + optional int32 type = 1; //类型0:占领灵脉 1:被抢夺灵脉 + optional string defName = 2;//对方玩家名字 + optional string userName = 3;//玩家名字 + optional int32 lingMaiId = 4; //灵脉id + optional int32 time = 5; //占领或者被抢夺发生的时间 + optional int32 practiceLevel = 6; //修行等级 + } + diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 796fb90..a3b9601 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1418,6 +1418,14 @@ enum MessageType{ CrossYuXuLunDaoBattleRecordResponse= 900036; CrossYuXuLunDaoBattleDetailRecordRequest =900037; CrossYuXuLunDaoBattleDetailRecordResponse =900038; + + //跨服灵脉秘境 + CrossLingmaiSecretAreaInfoRequest = 900040; + CrossLingmaiSecretAreaInfoResponse = 900041; + CrossLingmaiSecretAreaRequest = 900042; + CrossLingmaiSecretAreaResponse = 900043; + CrossLingmaiSecretAreaRecordRequest = 900044; + CrossLingmaiSecretAreaRecordResponse = 900045; ReplayWorldArenaRequest = 9000023; ReplayWorldArenaResponse = 9000024;