浮生门

master_huanxiang
duhui 2021-12-20 15:59:21 +08:00
parent a2f6dc1df4
commit 3a0514d753
3 changed files with 62 additions and 1 deletions

View File

@ -1205,5 +1205,17 @@ option optimize_for = SPEED;
optional int32 time = 5; //
optional int32 practiceLevel = 6; //
optional string defServerName = 7;//
}
//
message ArchitectureInfo{
optional int32 id = 1;
optional int32 level = 2;
optional int32 startTime = 3;
}
//
message LandInfo{
optional int32 id = 1;
optional int32 endTime = 2;
optional int32 heroTid = 3;
}

View File

@ -1375,6 +1375,20 @@ enum MessageType{
WeekCardRewardResponse = 3050033;
WeekCardIndicationInfoResponse = 3050034;
//
HomeInfoRequest = 3050101;
HomeInfoResponse = 3050102;
//
ArchitectureOperateRequest = 3050103;
//
WenderInfoRequset = 3050106;
WenderInfoResponse = 3050107;
//
WenderDispatchRequest = 3050108;
WenderDispatchResponse = 3050109;
//800000global
GetWorldServerRequest = 800001;//ip

View File

@ -1051,4 +1051,39 @@ import "CommonProto.proto";
optional int32 round = 6;//
}
//
message HomeInfoRequest{
}
message ArchitectureOperateRequest{
repeated int32 ids = 1;
optional int32 type = 2;//12
optional int32 privilageTypeId = 3;//id
}
message HomeInfoResponse{
repeated ArchitectureInfo infos = 1;
optional Drop drop = 2;
}
//
message WenderInfoRequset{
}
message WenderInfoResponse{
repeated LandInfo lands = 1;
repeated int32 heroTids = 2;
}
message WenderDispatchRequest{
optional int32 id = 1;
optional int32 type = 2;//123
optional int32 heroTid = 3;
optional int32 privilageTypeId = 4;//id
}
message WenderDispatchResponse{
optional LandInfo land = 1;
repeated int32 heroTids = 2;
optional Drop drop = 3;
}