妖兽来袭

zhangshanxue 2019-08-21 14:09:05 +08:00
parent dcc17dbcf4
commit 83ee7fa095
4 changed files with 32 additions and 1 deletions

View File

@ -548,4 +548,14 @@ option optimize_for = SPEED;
optional int32 head =4;
optional int32 headFrame = 5;
optional TeamOneTeamInfo team = 6;
}
//
message MonsterRankInfo{
optional string name = 1;
optional int32 score = 2;
optional int32 rank =3;
optional int32 level =4;
optional int32 head =5;
optional int32 headFrame =6;
}

View File

@ -280,4 +280,10 @@ import "CommonProto.proto";
message EndlessOutConsumeResponse{
optional int32 fightCount = 1;//
optional int32 consumeExecution = 2;//
}
}
//
message monsterAttackIndication
{
optional int32 monsterAttackTime = 1;
}

View File

@ -326,6 +326,9 @@ enum MessageType{
GET_PLAYER_ONE_TEAM_INFO_REQUEST = 16650;//
GET_PLAYER_ONE_TEAM_INFO_RESPONSE = 16651;
GET_MONSTER_RANK_INFO_REQUEST = 16652;//
GET_MONSTER_RANK_INFO_RESPONSE = 1663;
// H 10700
HERO_RAND_REQQUEST = 10701;
@ -394,6 +397,8 @@ enum MessageType{
MODIFY_HEAD_FRAME_REQUEST = 11233;
MODIFY_HEAD_FRAME_RESPONSE = 11234;
MONSTER_ATTACK_INDICATION = 11235;
// N 11300
// O 11400
// P 11500

View File

@ -475,4 +475,14 @@ import "CommonProto.proto";
message UpdateSecretBoxSeasonIndication{
optional int32 newSeasonId = 1 ;// id id=0
}
message GetMonsterRankInfoRequest{
}
message GetMonsterRankInfoResponse{
repeated MonsterRankInfo monster = 1;
optional int32 myScore = 2; // -1
optional int32 myRank =3;// -1
}