master_huanxiang
whb 2021-02-23 16:03:05 +08:00
parent 28000fe7b9
commit 4e44a45caf
3 changed files with 6 additions and 6 deletions

View File

@ -625,7 +625,7 @@ option optimize_for = SPEED;
repeated TeamSimpleInfo team =1; repeated TeamSimpleInfo team =1;
repeated TeamSimpleInfo PokemonInfos = 2; repeated TeamSimpleInfo PokemonInfos = 2;
optional int32 totalForce=3; optional int32 totalForce=3;
repeated int32 remainHp = 4;// repeated int64 remainHp = 4;//
} }
// //
message TeamOneInfo{ message TeamOneInfo{

View File

@ -44,7 +44,7 @@ import "CommonProto.proto";
// //
optional Drop missionDrop = 3; // boss optional Drop missionDrop = 3; // boss
// //
repeated int32 remainHpList = 4; repeated int64 remainHpList = 4;
// 线 // 线
optional Mission mission = 5; optional Mission mission = 5;
// //
@ -68,7 +68,7 @@ import "CommonProto.proto";
// //
optional Drop missionDrop = 3; optional Drop missionDrop = 3;
// //
repeated int32 remainHpList = 4; repeated int64 remainHpList = 4;
// 线 // 线
optional Mission mission = 5; optional Mission mission = 5;
// //

View File

@ -6,14 +6,14 @@ import "CommonProto.proto";
message HeroInfo { message HeroInfo {
optional string heroId = 1; optional string heroId = 1;
optional int32 heroHp = 2; optional int64 heroHp = 2;
optional int32 heroMaxHp =3; optional int64 heroMaxHp =3;
} }
message TrialHeroInfo{ message TrialHeroInfo{
optional string heroId = 1;//Id optional string heroId = 1;//Id
optional int32 tmpId = 2;//id optional int32 tmpId = 2;//id
optional int32 star = 3; optional int32 star = 3;
optional int32 heroHp = 4;// optional int64 heroHp = 4;//
optional int32 level = 5;// optional int32 level = 5;//
optional int32 skinId = 6;// optional int32 skinId = 6;//
} }