轩辕宝镜协议
parent
fe99762cac
commit
09e57f804a
|
@ -821,4 +821,8 @@ option optimize_for = SPEED;
|
|||
optional int32 heroId = 1;
|
||||
optional int32 maxStar = 2;
|
||||
}
|
||||
message SituationInfo {
|
||||
optional int32 id = 1;
|
||||
optional int32 overTime = 2;
|
||||
}
|
||||
|
|
@ -352,4 +352,14 @@ import "CommonProto.proto";
|
|||
optional Drop drop = 2;//获得奖励
|
||||
optional int32 resultId = 3;//结果id,对应表id,若为-1单独处理
|
||||
}
|
||||
|
||||
message GetAllSituationInfoResponse{
|
||||
repeated SituationInfo infos = 1;//id 结束时间
|
||||
repeated int32 passId = 2;//已通关的id
|
||||
}
|
||||
message SituationChallengeRequest{
|
||||
optional int32 id = 1;//挑战id
|
||||
optional int32 type = 2;//1挑战 2扫荡
|
||||
}
|
||||
message SituationChallengeResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
||||
|
|
|
@ -775,7 +775,12 @@ enum MessageType{
|
|||
|
||||
SOUL_MERGE_REQUEST = 11839; //合成魂印
|
||||
SOUL_MERGE_RESPONSE = 11840;
|
||||
|
||||
|
||||
SITUATION_INFO_GET_REQUEST = 11841;//获取轩辕宝镜状态
|
||||
SITUATION_INFO_GET_RESPONSE = 11842;
|
||||
|
||||
SITUATION_CHALLENGE_REQUEST = 11843;//挑战或扫荡轩辕宝镜
|
||||
SITUATION_CHALLENGE_RESPONSE
|
||||
// T 11900
|
||||
TRIGGER_EVENT_REQUEST = 11900; //
|
||||
TRIGGER_EVENT_RESPONSE = 11901;
|
||||
|
|
Loading…
Reference in New Issue