妖兽来袭
parent
dcc17dbcf4
commit
83ee7fa095
|
|
@ -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;
|
||||
}
|
||||
|
|
@ -280,4 +280,10 @@ import "CommonProto.proto";
|
|||
message EndlessOutConsumeResponse{
|
||||
optional int32 fightCount = 1;//战斗次数
|
||||
optional int32 consumeExecution = 2;//消耗行动力
|
||||
}
|
||||
}
|
||||
//妖兽来袭
|
||||
message monsterAttackIndication
|
||||
{
|
||||
optional int32 monsterAttackTime = 1;
|
||||
}
|
||||
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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不在榜单内
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue