From 84dd7e5a9a917aa7f43d19064f7c3c02fd6cc079 Mon Sep 17 00:00:00 2001 From: jiahuiwen <1024696487@qq.com> Date: Wed, 26 Jun 2019 17:26:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=95=E7=82=BC=E7=B2=BE=E6=B0=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 2 +- protos/FightInfoProto.proto | 4 ++++ protos/MapInfoProto.proto | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 5798a1e..fcb2d6e 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -110,7 +110,7 @@ option optimize_for = SPEED; message Cell{ // 格子id optional int32 cellId = 1; - // mapPointConfig id 如果是爬塔(试炼)副本 pointId 为怪物组id + // mapPointConfig id optional int32 pointId = 2; } diff --git a/protos/FightInfoProto.proto b/protos/FightInfoProto.proto index c260ba8..1780af6 100644 --- a/protos/FightInfoProto.proto +++ b/protos/FightInfoProto.proto @@ -44,6 +44,8 @@ import "CommonProto.proto"; optional int32 leftTime = 6; // eventPointConfig id optional int32 eventId = 7; + // 试炼精气 + optional int32 essenceValue = 8; } // 快速战斗 @@ -60,6 +62,8 @@ import "CommonProto.proto"; optional Mission mission = 5; // 探索地图剩余时间(秒) optional int32 leftTime = 6; + // 试炼精气 + optional int32 essenceValue = 7; } diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index 7130cb3..1943898 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -116,6 +116,8 @@ import "CommonProto.proto"; repeated TowerShopInfo towerShopInfos = 4; // 历史最高层 optional int32 highestTower = 5; + // 当前地图,试炼精气(如果召唤过boss 该值为 -1) + optional int32 essenceValue = 6; }