Compare commits
5 Commits
f155335d75
...
2f40a633cd
| Author | SHA1 | Date |
|---|---|---|
|
|
2f40a633cd | |
|
|
1da1adf178 | |
|
|
6e98984655 | |
|
|
6ae3e2de95 | |
|
|
7dc1a2eaab |
|
|
@ -18,6 +18,16 @@ import "CommonProto.proto";
|
|||
// 战斗属性
|
||||
optional FightData fightData = 1;
|
||||
}
|
||||
|
||||
// 自动战斗
|
||||
message AutoFightRequest {
|
||||
optional int32 fightId = 1;//关卡id
|
||||
optional int32 teamId = 2;//队伍id
|
||||
}
|
||||
message AutoFightResponse {
|
||||
optional int32 result = 1;//战斗结果
|
||||
optional Drop drop = 2;//掉落
|
||||
}
|
||||
|
||||
// 战斗结束
|
||||
message FightEndRequest {
|
||||
|
|
|
|||
|
|
@ -1545,6 +1545,12 @@ enum MessageType{
|
|||
|
||||
VouchersBuyGiftRequest = 3050227;//代金卷购买
|
||||
|
||||
StoreOneClickPurchaseRequest = 3050228;//商城一键购买
|
||||
StoreOneClickPurchaseResponse = 3050229;
|
||||
|
||||
AutoFightRequest = 3050230;//自动战斗
|
||||
AutoFightResponse = 3050231;
|
||||
|
||||
//==========================================================800000起为global 协议==========================================================
|
||||
|
||||
GetWorldServerRequest = 800001;//获取世界服ip
|
||||
|
|
|
|||
|
|
@ -1358,4 +1358,12 @@ message choiceWishHeroResponse{
|
|||
message wishDrawCardIndication{
|
||||
// 暂不用
|
||||
repeated wishDrawCardInfo infoList = 1;
|
||||
}
|
||||
|
||||
// 商店一键购买
|
||||
message StoreOneClickPurchaseRequest{
|
||||
optional int32 id = 1;
|
||||
}
|
||||
message StoreOneClickPurchaseResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
||||
Loading…
Reference in New Issue