进入爬塔副本地图(试炼副本)

master_huanxiang
jiahuiwen 2019-06-25 14:04:20 +08:00
parent 90ebd7e107
commit c3254ab43c
2 changed files with 96 additions and 0 deletions

View File

@ -96,12 +96,38 @@ import "CommonProto.proto";
optional int32 leftTime = 1;
}
//
message TowerShopInfo{
// id
optional int32 goodsId = 1;
//
optional int32 buyCount = 2;
}
//
message TowerCopyInfo{
//
optional int32 tower = 1;
//
optional int32 fightCount = 2;
//
optional int32 resetCount = 3;
//
repeated TowerShopInfo towerShopInfos = 4;
//
optional int32 highestTower = 5;
}
//
message getAllLevelDifficultyInfosResponse{
repeated LevelDifficultyInfos levelDifficultyInfos = 1;
//
repeated MapInfo mapInfos = 2;
//
optional int32 starNum = 3;
//
optional TowerCopyInfo towerCopyInfo = 4;
}
//
@ -143,4 +169,57 @@ import "CommonProto.proto";
message FbStarRewardResponse{
//
optional Drop FbStarReward = 1;
}
//
message MapTowerEnterRequest{
//
optional int32 teamId = 1;
}
message MapTowerEnterResponse{
//
repeated Cell mapList = 1;
//
optional int32 curXY = 2;
//
repeated HeroInfo heroInfos = 3;
//
optional int32 leftTime = 4;
//
optional Drop temporaryItems = 5;
// buff
repeated FoodBuffer foodBuffers = 6;
//
repeated int32 wakeCells = 7;
//
optional int32 fightCount = 8;
//
optional int32 essenceValue = 9;
}
//
message MapTowerResetResponse {
//
optional int32 tower = 1;
//
optional int32 resetCount = 2;
}
//
message MapTowerCallChiefResponse{
// boss
optional int32 type = 1;
// bossId
optional int32 bossId = 2;
}
//
message MapTowerOutResponse{
//
optional Drop drop = 1;
//
optional int32 highestTower = 2;
// ()
optional int32 time = 3;
}

View File

@ -224,6 +224,23 @@ enum MessageType{
MAP_FAST_FIGHT_RESPONSE = 11219;
MISSION_UPDATE_INDICATION = 11220; //
//
MAP_TOWER_ENTER_REQUEST = 11221;
MAP_TOWER_ENTER_RESPONSE = 11222;
//
MAP_TOWER_RESET_REQUEST = 11223;
MAP_TOWER_RESET_RESPONSE = 11224;
//
MAP_TOWER_CALL_CHIEF_REQUEST = 11225;
MAP_TOWER_CALL_CHIEF_RESPONSE = 11226;
//
MAP_TOWER_OUT_REQUEST = 11227;
MAP_TOWER_OUT_RESPONSE = 11228;
// N 11300
// O 11400
// P 11500