Merge branch 'master' of 60.1.1.230:backend/jieling_protocol

# Conflicts:
#	protos/Family.proto
master_huanxiang
wangyuan 2020-05-07 14:59:07 +08:00
commit 4666c9f48f
3 changed files with 72 additions and 2 deletions

View File

@ -17,7 +17,9 @@ import "CommonProto.proto";
optional int32 frame = 10; //
optional int32 maxBossHurt = 11; //
optional int32 lastHurt = 12 ;//
repeated int32 takeFeteReward =13 ; //
optional int32 lastFeteGuildId =14 ; // id
optional int32 lastFeteType =15 ; // // 5
}
@ -373,6 +375,7 @@ import "CommonProto.proto";
optional Drop drop = 1;
}
message CarDelayProgressIndication{
optional int32 progress = 1; // -1 1 2
optional int32 endTime = 2; //
@ -383,4 +386,47 @@ import "CommonProto.proto";
repeated RankInfo rankInfo = 1;
optional int32 myRank = 2; //
optional int32 myScore = 3 ;//
}
}
message FamilyFeteRequest{
optional int32 type = 1; //
}
message FamilyFeteResponse{
optional int32 curExp = 1; //
}
message FamilyGetFeteRewardRequest{
optional int32 id = 1; //id
}
message FamilyGetFeteRewardResponse{
}
message FamilyFeteRewardProcessIndication{
optional int32 score = 1; //
}
message DeathPathInfo{
optional int32 pathId = 1;
optional int32 guildId = 2;
}
message GetDeathPathStatusResponse{
optional int32 status = 1;//01
}
message GetDeathPathInfoResponse{
optional int32 overTime = 1;//
optional int32 challengeCount = 2;//
repeated DeathPathInfo infos = 3;
}
message ChallengeDeathPathRequest{
optional int32 pathId = 1;
}
message ChallengeDeathPathResponse{
optional FightData fightData = 1;
optional int32 damage = 2;
optional Drop drop = 3;
}

View File

@ -171,6 +171,16 @@ enum MessageType{
DAILY_CHALLENGE_REQUEST = 10307;//
DAILY_CHALLENGE_RESPONSE = 10308;
DEATH_PATH_GET_STATUS_REQUEST = 10309;//
DEATH_PATH_GET_STATUS_RESPONSE = 10310;
DEATH_PATH_INFO_REQUEST = 10311;//
DEATH_PATH_INFO_RESPONSE = 10312;
DEATH_PATH_CHALLENGE_REQUEST = 10313;//
DEATH_PATH_CHALLENGE_RESPONSE = 10314;
// E 10400
@ -881,4 +891,16 @@ enum MessageType{
//20111 - 20200
EQUIP_COMPLEX_REQUEST = 20111;//
EQUIP_COMPLEX_RESPONSE = 20112;
//30000 使
FamilyFeteRequest = 30001;//
FamilyFeteResponse = 30002;//
FamilyGetFeteRewardRequest = 30003;//
FamilyGetFeteRewardResponse = 30004;//
FamilyFeteRewardProcessIndication = 30005 ; //
}

View File

@ -378,6 +378,8 @@ import "CommonProto.proto";
repeated LuckWheelRewardPosInfo posInfos = 8;//
repeated LuckWheelRewardPosInfo posInfosAdvance = 9;//
repeated int32 MonthDailyTake=10;//id
optional int32 lastFeteType =11 ; // // 5
repeated int32 takeFeteReward =12 ; //
}