From bdd2b5872f1d98c5456905f3887a7def9088ac4f Mon Sep 17 00:00:00 2001 From: grimm <1769111741@qq.com> Date: Thu, 13 Jun 2024 14:22:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=B9=E8=AE=AD=E9=81=93=E5=85=B7=E5=8A=A0?= =?UTF-8?q?=E9=80=9F=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 6 ++++++ protos/MessageTypeProto.proto | 3 +++ 2 files changed, 9 insertions(+) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index d8e5df1..3f62f66 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -733,6 +733,12 @@ message TrainingArchitectureInfoResponse{ repeated TrainingArchitectureInfo infos = 1;//建筑属性 } +message TrainingPropSpeedRequest{ + optional int32 archId = 1;//建筑id + optional int32 itemId = 2;//道具id + optional int32 num = 3;//道具数量 +} + // 助阵 message AssistInfoRequest{ } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 1df981f..347f01e 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1732,6 +1732,9 @@ enum MessageType{ //现金点卷购买 MoneyBuyGiftRequest = 70000167; + // 特训道具加速时间 + TrainingPropSpeedRequest = 7000017; + TrainingPropSpeedResponse = 7000018; }