进入爬塔副本地图(试炼副本)
parent
90ebd7e107
commit
c3254ab43c
|
|
@ -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;
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue