TASK【ID1005460】【玩法需求】猎妖之路

master_huanxiang
zhangshanxue 2020-01-14 15:48:22 +08:00
parent 14d8c4298a
commit be12edceb2
3 changed files with 20 additions and 7 deletions

View File

@ -756,10 +756,15 @@ option optimize_for = SPEED;
repeated int32 holyEquipID = 6;//id repeated int32 holyEquipID = 6;//id
} }
message ExpeditionSimpleHeroInfo{ message ExpeditionSimpleHeroInfo{
optional string heroId = 1;//id optional string heroId = 1;//id
optional double remainHp =2;// optional double remainHp =2;//
} }
message ExpeditionEquip{
optional string id = 1;
optional int32 equiptId = 2;
}

View File

@ -13,6 +13,7 @@ import "CommonProto.proto";
repeated ExpeditionNodeInfo nodeInfo = 1; // repeated ExpeditionNodeInfo nodeInfo = 1; //
repeated ExpeditionSimpleHeroInfo heroInfo = 2;// repeated ExpeditionSimpleHeroInfo heroInfo = 2;//
repeated int32 lay = 3;//id repeated int32 lay = 3;//id
repeated ExpeditionEquip equipIds = 4;
} }
@ -47,7 +48,6 @@ import "CommonProto.proto";
message StartExpeditionBattleRequest{ message StartExpeditionBattleRequest{
optional int32 nodeId = 1; //id optional int32 nodeId = 1; //id
optional int32 teamId = 2; //id optional int32 teamId = 2; //id
optional int32 expInfo = 3; // id
} }
message StartExpeditionBattleResponse { message StartExpeditionBattleResponse {
@ -64,23 +64,29 @@ import "CommonProto.proto";
message EndExpeditionBattleResponse { message EndExpeditionBattleResponse {
// //
optional int32 result = 1; optional int32 result = 1;
repeated ExpeditionNodeInfo nodeInfo = 2; optional Drop drop = 2;
repeated ExpeditionSimpleHeroInfo heroInfo = 3;//
optional Drop drop = 4;
} }
message TakeHolyEquipRequest{ message TakeHolyEquipRequest{
optional int32 type = 1; // optional int32 nodeId = 1; //id
optional int32 type = 2; //
} }
// //
message TakeHolyEquipResponse{ message TakeHolyEquipResponse{
optional string equipId = 1; optional string equipId = 1;
repeated ExpeditionNodeInfo nodeInfo = 2;//
} }
//
message ExpeditionEquipIndication {
repeated ExpeditionEquip equipIds = 1;
}
message ExpeditionNodeInfoIndication {
repeated ExpeditionNodeInfo nodeInfo = 1;
repeated ExpeditionSimpleHeroInfo heroInfo = 2;//
}

View File

@ -838,5 +838,7 @@ enum MessageType{
EXPEDITION_RECOVER_HERO_REQUEST = 20014;// EXPEDITION_RECOVER_HERO_REQUEST = 20014;//
EXPEDITION_RECOVER_HERO_RESONSE = 20015; EXPEDITION_RECOVER_HERO_RESONSE = 20015;
EXPEDITION_HOLY_BAG_INDICATION = 20016; //
EXPEDITION_NOINFO_INDICATION = 20017; //
} }