master_huanxiang
xuexinpeng 2021-05-17 11:09:08 +08:00
commit d31120889d
4 changed files with 55 additions and 1 deletions

View File

@ -105,7 +105,9 @@ option optimize_for = SPEED;
repeated string jewels = 14;//
optional int32 createtype = 15;// 1
optional int32 changeId = 16;//id 0
repeated int32 sealIdList = 17;//id
}
message PokemonInfo{
optional int32 tempId = 1; //id
optional string id = 2;
@ -956,3 +958,12 @@ option optimize_for = SPEED;
message HardStageInfo{
repeated HardStageChapter chapter = 1;
}
//
message PurpleMansionSeal{
optional int32 id = 1;//id
optional int32 type = 2;//
optional string subId = 3;//id
optional int32 state = 4;// 0:使,1:使
}

View File

@ -346,4 +346,34 @@ import "CommonProto.proto";
// 鸿
message HongmengSteleNewHandIndication{
optional int32 state = 1;// 鸿
}
}
//
message UpPracticeLevelRequest{}
message UpPracticeLevelResponse{
optional int32 practiceLevel = 1;//
}
//
//
// 1: oldSealId != newSealId :
// 2: oldSealId == newSealId && newSealId.subId == subId :
// 3: oldSealId == newSealId && newSealId.subId != subId :
message ReplacePurpleMansionSealRequest{
optional int32 oldSealId = 1;//id
optional int32 newSealId = 2;//id
optional string subId = 3;//id
}
message ReplacePrupleMansionSealResponse{
repeated PurpleMansionSeal sealList = 1;
};
//
message PurpleMansionSealIndication{
repeated PurpleMansionSeal sealList = 1;
}

View File

@ -1187,6 +1187,17 @@ enum MessageType{
ActiveUserMountRequest = 303907;
ActiveUserMountResponse = 303908;
//
UpPracticeLevelRequest = 304101;
UpPracticeLevelResponse = 304102;
//
ReplacePurpleMansionSealRequest = 304103;
ReplacePurpleMansionSealResponse = 304104;
PurpleMansionSealIndication = 304105;
//800000global
GetWorldServerRequest = 800001;//ip
GetWorldServerResponse = 800002;

View File

@ -78,6 +78,8 @@ import "CommonProto.proto";
repeated UserSkinInfo userSkinList = 37;//
repeated UserTitleInfo userTitleList = 38;//
repeated UserMountInfo userMountList = 39;//
optional int32 practiceLevel = 40;//
repeated PurpleMansionSeal sealList = 41;//
}