浮生门
parent
a2f6dc1df4
commit
3a0514d753
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1375,6 +1375,20 @@ enum MessageType{
|
|||
WeekCardRewardResponse = 3050033;
|
||||
WeekCardIndicationInfoResponse = 3050034;
|
||||
|
||||
|
||||
// 浮生门
|
||||
HomeInfoRequest = 3050101;
|
||||
HomeInfoResponse = 3050102;
|
||||
// 建筑升级
|
||||
ArchitectureOperateRequest = 3050103;
|
||||
// 栖云阁
|
||||
WenderInfoRequset = 3050106;
|
||||
WenderInfoResponse = 3050107;
|
||||
// 派遣
|
||||
WenderDispatchRequest = 3050108;
|
||||
WenderDispatchResponse = 3050109;
|
||||
|
||||
|
||||
|
||||
//800000起为global 协议
|
||||
GetWorldServerRequest = 800001;//获取世界服ip
|
||||
|
|
|
@ -1051,4 +1051,39 @@ import "CommonProto.proto";
|
|||
optional int32 round = 6;//回合数,计算加成
|
||||
}
|
||||
|
||||
// 浮生门
|
||||
message HomeInfoRequest{
|
||||
}
|
||||
message ArchitectureOperateRequest{
|
||||
repeated int32 ids = 1;
|
||||
optional int32 type = 2;//1:升级,2:领取
|
||||
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;//1:普通派遣,2:立即完成,3:领取
|
||||
optional int32 heroTid = 3;
|
||||
optional int32 privilageTypeId = 4;//特权id,领取不用
|
||||
}
|
||||
|
||||
message WenderDispatchResponse{
|
||||
optional LandInfo land = 1;
|
||||
repeated int32 heroTids = 2;
|
||||
optional Drop drop = 3;
|
||||
}
|
||||
|
Loading…
Reference in New Issue