日常副本 协议

master_huanxiang
lvxinran 2020-04-24 14:12:23 +08:00
parent f16efb6999
commit cb44c2f3cf
3 changed files with 16 additions and 2 deletions

View File

@ -69,11 +69,11 @@ option optimize_for = SPEED;
optional int32 equipId = 2;
optional SpecialEffects mainAttribute = 3;
repeated SpecialEffects secondAttribute = 4;
optional int32 rebuildLevel = 5; //
optional int32 rebuildLevel = 5; //
optional int32 createTime = 6;//
optional int32 skillId = 7;//
optional int32 isLocked = 8; // 1 0:
optional int32 exp = 9; //
optional int32 exp = 9; //
}
message SoulPos{

View File

@ -166,6 +166,10 @@ enum MessageType{
DIRECT_BUY_GOODS_INDICATION = 10306; //
DAILT_CHALLENGE_REQUEST = 10307;//
DAILT_CHALLENGE_RESPONSE = 10308;
// E 10400
ERROR_CODE_INDICATION = 10400;

View File

@ -66,6 +66,7 @@ import "CommonProto.proto";
optional int32 vipDaily = 27;// 0 >0vip
optional int32 missingRefreshCount = 28;//
repeated MonthCardInfo monthinfos = 29;//
repeated int32 dailyChallengeInfo = 30;//
}
@ -701,6 +702,15 @@ import "CommonProto.proto";
message TakeMothDilyResponse{
optional Drop drop =1;
}
message DailyChallengeRequest{
optional int32 id = 1;
optional int32 type = 2;//1 2
}
message DailyChallengeResponse{
optional Drop drop = 1;
optional FightData fightData = 2;
}