Task【ID1006213】【新战斗版本】大闹天宫(猎妖之路功能优化)
parent
d7eb01e38b
commit
0890629260
|
|
@ -25,7 +25,7 @@ import "CommonProto.proto";
|
|||
|
||||
message TakeExpeditionBoxRewardResponse{
|
||||
optional Drop drop = 1;
|
||||
repeated int32 leve = 2; //阶段id 3层的时候有困难和普通两个
|
||||
repeated int32 leve = 2; //阶段id 3层的时候有困难和普通两个
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -70,6 +70,15 @@ import "CommonProto.proto";
|
|||
}
|
||||
|
||||
|
||||
message EndConfirmExpeditionBattleRequest{
|
||||
optional int32 nodeId = 1; //节点id
|
||||
}
|
||||
|
||||
message EndConfirmExpeditionBattleResponse {
|
||||
|
||||
}
|
||||
|
||||
|
||||
message TakeHolyEquipRequest{
|
||||
optional int32 nodeId = 1; //节点id
|
||||
optional int32 type = 2; //获取类型
|
||||
|
|
@ -108,6 +117,20 @@ import "CommonProto.proto";
|
|||
optional int32 score =1 ;
|
||||
repeated TreasureRewardState treasureRewardState=2;
|
||||
}
|
||||
|
||||
|
||||
message StoreNodeRequest{
|
||||
optional int32 nodeId =1;//节点id -1 放弃节点
|
||||
}
|
||||
|
||||
message StoreNodeResponse{
|
||||
}
|
||||
|
||||
message HeroNodeRequest{
|
||||
optional int32 nodeId =1;//招募节点
|
||||
optional int32 heroId =2;//招募英雄id
|
||||
}
|
||||
|
||||
message HeroNodeResponse{
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -958,6 +958,17 @@ enum MessageType{
|
|||
GuildGetHelpLogResponse = 303315;
|
||||
GuildHelpLogIndication = 303316; //新的援助会推
|
||||
|
||||
|
||||
//303400 303500 远征
|
||||
EndConfirmExpeditionBattleRequest = 303400;//远征失败节点确认
|
||||
EndConfirmExpeditionBattleResponse = 303401;
|
||||
|
||||
StoreNodeRequest = 303402;
|
||||
StoreNodeResponse = 303403;
|
||||
|
||||
HeroNodeRequest = 303404;
|
||||
HeroNodeResponse = 303405;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ import "CommonProto.proto";
|
|||
optional int32 missingRefreshCount = 28;//迷宫寻宝妖精刷新次数
|
||||
repeated MonthCardInfo monthinfos = 29;//月卡
|
||||
repeated int32 dailyChallengeInfo = 30;//每日挑战信息
|
||||
optional int32 expeditionLeve =31 ; //猎妖之路阶段
|
||||
optional int32 expeditionLeve =31 ; //猎妖之路阶段 -1 待选择
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -381,7 +381,7 @@ import "CommonProto.proto";
|
|||
repeated int32 MonthDailyTake=10;//已领取的月卡id
|
||||
optional int32 lastFeteType =11 ; // 上次祭祀类型 //每日清除 5点推送
|
||||
repeated int32 takeFeteReward =12 ; // 祭祀领取进度
|
||||
optional int32 expeditionLeve =13 ; //猎妖之路阶段
|
||||
optional int32 expeditionLeve =13 ; //猎妖之路阶段 -1 待选择
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue