自动战斗
parent
6ae3e2de95
commit
6e98984655
|
|
@ -19,14 +19,15 @@ import "CommonProto.proto";
|
|||
optional FightData fightData = 1;
|
||||
}
|
||||
|
||||
// 主线战斗
|
||||
message MainFightRequest {
|
||||
optional int32 fightId = 3;
|
||||
optional int32 teamId = 4; //队伍id
|
||||
// 自动战斗
|
||||
message AutoFightRequest {
|
||||
optional int32 fightId = 1;//关卡id
|
||||
optional int32 teamId = 2;//队伍id
|
||||
optional int32 type = 3;//类型
|
||||
}
|
||||
message MainFightResponse {
|
||||
message AutoFightResponse {
|
||||
optional int32 result = 1;//战斗结果
|
||||
optional FightData fightData = 2;// 战斗属性
|
||||
optional Drop drop = 3;//掉落
|
||||
}
|
||||
|
||||
// 战斗结束
|
||||
|
|
|
|||
|
|
@ -1548,8 +1548,8 @@ enum MessageType{
|
|||
StoreOneClickPurchaseRequest = 3050228;//商城一键购买
|
||||
StoreOneClickPurchaseResponse = 3050229;
|
||||
|
||||
MainFightRequest = 3050230;//主线战斗
|
||||
MainFightResponse = 3050231;//主线战斗
|
||||
AutoFightRequest = 3050230;//自动战斗
|
||||
AutoFightResponse = 3050231;
|
||||
|
||||
//==========================================================800000起为global 协议==========================================================
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue