新关卡

master_huanxiang
wangyuan 2019-09-24 14:00:15 +08:00
parent 58490572dd
commit c3e6c72af4
3 changed files with 23 additions and 1 deletions

View File

@ -4,6 +4,8 @@ option optimize_for = SPEED;
import "CommonProto.proto";
import "PlayerInfoProto.proto";
// request response
//
@ -27,7 +29,7 @@ import "CommonProto.proto";
// 14#1#0|14#1#0|14#1#0|...|14#1#0
optional string frames = 2;
optional int32 fightId = 3;
optional int32 type = 4; // 1: 2 3 4: 5
optional int32 type = 4; // 1: 2 3 4: 5 6
optional int32 dropout = 5 ;// 退 1 退
}
message FightEndResponse {
@ -50,6 +52,7 @@ import "CommonProto.proto";
//
optional int32 essenceValue = 9;
optional int32 lastXY =10; //退
optional UpdateUserExpIndicaiton UpdateUserExpIndicaiton = 11;//
}
//
@ -189,5 +192,9 @@ import "CommonProto.proto";
optional AdventureBossSimpleInfo adventureBossInfo =1; // bosss
}
message MainLevelTakeStateRewardResponse{
optional Drop drop = 1 ;//
}

View File

@ -457,6 +457,14 @@ enum MessageType{
//indication
MAP_OUT_INDICATION = 11235;
MAIN_LEVEL_GET_INFO_REQUEST = 11236;//
MAIN_LEVEL_GET_INFO_RESPONSE = 11237;
MAIN_LEVEL_TAKE_STATE_REWARD_REQUEST = 11238; //
MAIN_LEVEL_TAKE_STATE_REWARD_RESPONSE = 11239;
// N 11300
NOTIFY_PAY_SUCCESS_INDICATION = 11300 ; //
// O 11400

View File

@ -551,4 +551,11 @@ import "CommonProto.proto";
optional int32 goodsId = 1; // id
optional Drop drop = 2; //
}
message GetMainLevelInfoResponse{
optional int32 fightId = 1 ; //id
optional int32 state = 2 ;// 1 2 -1
optional int32 duration = 3;//
}