Merge branch 'master_test_gn' into master_test_gn_fabao
commit
cb6dd8b9cf
|
@ -222,6 +222,41 @@ 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 ArenaPersonInfo lingmaiData = 5;//当前页的灵脉数据
|
||||
optional int32 timePoint =6 ;// 下一阶段的时间戳
|
||||
}
|
||||
//灵脉秘境挑战
|
||||
message CrossLingmaiSecretAreaRequest{
|
||||
optional int32 id =1 ;//灵脉id
|
||||
optional int32 privilageTypeId = 2;//特权id
|
||||
|
||||
}
|
||||
message CrossLingmaiSecretAreaResponse{
|
||||
optional FightData fightData =1; // 战斗数据
|
||||
optional int32 result =2 ;//战斗结果
|
||||
}
|
||||
//灵脉秘境记录
|
||||
message CrossLingmaiSecretAreaRecordRequest{
|
||||
}
|
||||
message CrossLingmaiSecretAreaRecordResponse{
|
||||
repeated LingMaiSecretRecord recordData = 1;
|
||||
}
|
||||
|
||||
message CrossLingmaiIndicationResponse{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -337,6 +337,9 @@ option optimize_for = SPEED;
|
|||
optional int32 userTitle = 12;
|
||||
optional int32 userMount = 13;
|
||||
optional int32 practiceLevel = 14;//修行等级
|
||||
optional int32 lingmaiId = 15;//灵脉id
|
||||
optional int32 getAwardTimeOrOccupyTime = 16; //得到奖励的时间或者占领的灵脉的时间
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -458,6 +461,7 @@ option optimize_for = SPEED;
|
|||
optional int32 startTime = 3;//开始时间
|
||||
optional int32 endTime = 4; //结束时间
|
||||
optional int32 dynamicBuyTimes= 5; //可购买次数
|
||||
optional int32 isBought = 6;//Receive类型礼包专用,是否购买礼包
|
||||
|
||||
}
|
||||
|
||||
|
@ -1177,3 +1181,21 @@ option optimize_for = SPEED;
|
|||
optional int32 level = 2;//等级
|
||||
}
|
||||
|
||||
//灵脉秘境
|
||||
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; //修行等级
|
||||
}
|
||||
|
||||
|
|
|
@ -1420,6 +1420,15 @@ enum MessageType{
|
|||
CrossYuXuLunDaoBattleRecordResponse= 900036;
|
||||
CrossYuXuLunDaoBattleDetailRecordRequest =900037;
|
||||
CrossYuXuLunDaoBattleDetailRecordResponse =900038;
|
||||
|
||||
//跨服灵脉秘境
|
||||
CrossLingmaiSecretAreaInfoRequest = 900040;
|
||||
CrossLingmaiSecretAreaInfoResponse = 900041;
|
||||
CrossLingmaiSecretAreaRequest = 900042;
|
||||
CrossLingmaiSecretAreaResponse = 900043;
|
||||
CrossLingmaiSecretAreaRecordRequest = 900044;
|
||||
CrossLingmaiSecretAreaRecordResponse = 900045;
|
||||
CrossLingmaiIndicationResponse = 900046;
|
||||
|
||||
ReplayWorldArenaRequest = 9000023;
|
||||
ReplayWorldArenaResponse = 9000024;
|
||||
|
|
Loading…
Reference in New Issue