玉虚论道挑战前面板数据 战斗回放
parent
4933ce8251
commit
5a036b3e50
|
|
@ -147,24 +147,6 @@ import "CommonProto.proto";
|
|||
message TakeArenaBattleRewardResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
||||
|
||||
//玉虚论道
|
||||
message CrossYuXuLunDaoChallengeRequest{
|
||||
repeated int32 teamId = 1; //本人进攻队伍一id 队伍二id 队伍三id
|
||||
optional int32 challengeUid = 2 ;// 对手uid
|
||||
optional int32 challengeType = 3 ;// 0免费挑战|1消耗物品挑战
|
||||
}
|
||||
message CrossYuXuLunDaoChallengeResponse{
|
||||
optional int32 myScore = 1 ; //我的分数值
|
||||
optional int32 defScore =2; // 对手分数值
|
||||
repeated ArenaPersonInfo arenaEnemys = 3; //新的一批对手信息
|
||||
repeated FightData fightData =4; // 战斗数据
|
||||
repeated int32 fightResult = 5 ;// 战斗结果
|
||||
optional Drop drop = 6;
|
||||
optional int32 myRank =7 ;// 我的排名
|
||||
optional int32 freeTimes =8 ;// 今日免费次数
|
||||
optional int32 changedTimes =9 ;// 今日已挑战次数
|
||||
}
|
||||
//玉虚论道面板数据
|
||||
message CrossYuXuLunDaoGetInfoRequest{
|
||||
}
|
||||
|
|
@ -181,6 +163,34 @@ import "CommonProto.proto";
|
|||
repeated int32 dailyRewardState =10;//日常奖励状态
|
||||
optional int32 changedTimes = 11 ;// 今日已挑战次数
|
||||
}
|
||||
|
||||
//玉虚论道挑战前双方面板数据
|
||||
message CrossYuXuLunDaoChallengeBeforeRequest{
|
||||
optional int32 playerId = 1;
|
||||
optional int32 defId = 2;
|
||||
}
|
||||
message CrossYuXuLunDaoChallengeBeforeResponse{
|
||||
optional TeamOneInfo myTeamInfo = 1;//己方面板数据
|
||||
optional TeamOneInfo defTeamInfo = 2;//对方面板数据
|
||||
}
|
||||
//玉虚论道挑战
|
||||
message CrossYuXuLunDaoChallengeRequest{
|
||||
repeated int32 teamId = 1; //本人进攻队伍一id 队伍二id 队伍三id
|
||||
optional int32 challengeUid = 2 ;// 对手uid
|
||||
optional int32 challengeType = 3 ;// 0免费挑战|1消耗物品挑战
|
||||
}
|
||||
message CrossYuXuLunDaoChallengeResponse{
|
||||
optional int32 myScore = 1 ; //我的分数值
|
||||
optional int32 defScore =2; // 对手分数值
|
||||
repeated ArenaPersonInfo arenaEnemys = 3; //新的一批对手信息
|
||||
repeated FightData fightData =4; // 战斗数据
|
||||
repeated int32 fightResult = 5 ;// 战斗结果
|
||||
optional Drop drop = 6;
|
||||
optional int32 myRank =7 ;// 我的排名
|
||||
optional int32 freeTimes =8 ;// 今日免费次数
|
||||
optional int32 changedTimes =9 ;// 今日已挑战次数
|
||||
}
|
||||
|
||||
//玉虚论道换一批
|
||||
message CrossYuXuLunDaoChangeEnemyInfoRequest{
|
||||
}
|
||||
|
|
@ -195,6 +205,22 @@ import "CommonProto.proto";
|
|||
optional bool isSuccess = 1 ;//是否领取成功
|
||||
optional Drop drop = 2 ;//日常奖励
|
||||
}
|
||||
//玉虚论道战斗回放
|
||||
message CrossYuXuLunDaoBattleRecordRequest{
|
||||
optional int32 uid =1 ;
|
||||
}
|
||||
message CrossYuXuLunDaoBattleRecordResponse{
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1022,4 +1022,16 @@ option optimize_for = SPEED;
|
|||
optional string strategyLink = 2;//使用链接
|
||||
optional string windowLink = 3;//素材链接
|
||||
}
|
||||
//玉虚论道战斗回放信息
|
||||
message crossYxldPlayerRecordInfo{
|
||||
optional int32 uid = 1;
|
||||
optional int32 level = 2;
|
||||
optional int32 head = 3;
|
||||
optional string userName = 4;
|
||||
optional int32 headFrame = 5;//头像框
|
||||
repeated FightData fightData = 6;//三个队伍的战斗回放
|
||||
optional int32 power = 7;
|
||||
optional int32 type = 8; //0挑战 1防守
|
||||
optional int32 result = 9; //0成功 1失败
|
||||
}
|
||||
|
||||
|
|
@ -1324,6 +1324,10 @@ enum MessageType{
|
|||
CrossYuXuLunDaoGetDailyRewardResponse = 900030;
|
||||
GetPlayerCrossYxldOneTeamInfoRequest = 900031;
|
||||
GetPlayerCrossYxldOneTeamInfoResponse = 900032;
|
||||
CrossYuXuLunDaoChallengeBeforeRequest = 900033;
|
||||
CrossYuXuLunDaoChallengeBeforeResponse = 900034;
|
||||
CrossYuXuLunDaoBattleRecordRequest= 900035;
|
||||
CrossYuXuLunDaoBattleRecordResponse= 900036;
|
||||
|
||||
ReplayWorldArenaRequest = 9000023;
|
||||
ReplayWorldArenaResponse = 9000024;
|
||||
|
|
|
|||
Loading…
Reference in New Issue