探索地图

master_huanxiang
xuexinpeng 2021-12-13 14:13:47 +08:00
parent b1516efe6b
commit e85d49065e
3 changed files with 63 additions and 0 deletions

View File

@ -1207,3 +1207,12 @@ option optimize_for = SPEED;
optional string defServerName = 7;//
}
//
message ExplorerMapInfo{
optional int32 mapId = 1; //id
optional int32 teamId = 2 ; //id
optional int32 hp = 3; //
optional int32 exploreTime = 4;//
}

View File

@ -1373,6 +1373,17 @@ enum MessageType{
WeekCardRewardRequest = 3050032;
WeekCardRewardResponse = 3050033;
WeekCardIndicationInfoResponse = 3050034;
//
ExplorerMapInfoRequest = 3050040;
ExplorerMapInfoResponse = 3050041;
ExplorerMapPlayerInfoRequest = 3050042;
ExplorerMapPlayerInfoResponse = 3050043;
ExplorerMapSendRequest = 3050044;
ExplorerMapSendResponse = 3050045;
ExplorerMapRewardRequest = 3050046;
ExplorerMapRewardResponse = 3050047;
ExplorerMapIndicationResponse = 3050048;
//800000global

View File

@ -1044,5 +1044,48 @@ import "CommonProto.proto";
repeated int32 relicIds = 5;//id
optional int32 round = 6;//
}
//
message ExplorerMapInfoRequest{
}
message ExplorerMapInfoResponse{
repeated ExplorerMapInfo exploreInfo = 1;//
}
//
message ExplorerMapPlayerInfoRequest{
optional int32 mapId = 1; //id
}
message ExplorerMapPlayerInfoResponse{
repeated ArenaPersonInfo playerInfo = 1;//
}
//
message ExplorerMapSendRequest{
optional int32 type = 1; // 0: 1:
repeated int32 mapId = 2; //id
repeated int32 teamId = 3; //id
repeated int32 time = 4; //
}
message ExplorerMapSendResponse{
optional int32 time = 1 ; //
}
//
message ExplorerMapRewardRequest{
optional int32 type = 1; //0: 1:
repeated int32 mapId = 2; //id
}
message ExplorerMapRewardResponse{
optional Drop drop = 1 ;//
}
message ExplorerMapIndicationResponse{
optional int32 type = 1; //0: 1:
optional int32 mapId = 2; //id
optional int32 teamId = 3; //id
optional Drop drop = 4 ;//
optional int32 hp = 5; //
}