dev_chengFeng
jiaoyangna 2020-08-12 14:25:36 +08:00
parent 95dff6f0e9
commit d5c241208d
3 changed files with 42 additions and 0 deletions

View File

@ -100,6 +100,7 @@ option optimize_for = SPEED;
optional int32 lockState = 13;// 1 0
repeated string jewels = 14;//
optional int32 createtype = 15;// 1
optional int32 changeId = 16;//id 0
}

View File

@ -211,9 +211,39 @@ import "CommonProto.proto";
repeated string equipIds =1;//
optional Drop drop = 2;//
}
message EspecialEquipBackRequest{
repeated string heroIdLsit = 1;//
}
message EspecialEquipBackResponse{
optional Drop drop = 1;
}
message SaveHeroChangeRequest{
optional string heroId = 1; //id
}
message SaveHeroChangeResponse{
optional int32 heroTempId = 2; //id
}
message CancelHeroChangeRequest{
optional string heroId = 1; //id
}
message CancelHeroChangeResponse{
}
message DoHeroChangeRequest{
optional string heroId = 1; //id
}
message DoHeroChangeResponse{
optional Drop drop = 1;//
}

View File

@ -1009,6 +1009,17 @@ enum MessageType{
//303501 - 303600
TakeArenaBattleRewardRequest = 303501;
TakeArenaBattleRewardResponse = 303502;
//303601 - 303650
SaveHeroChangeRequest = 303601;
SaveHeroChangeResponse = 303602;
CancelHeroChangeRequest = 303603;
CancelHeroChangeResponse = 303604;
DoHeroChangeRequest = 303605;
DoHeroChangeResponse = 303606;
}