From bbe362ad8dbf733c2ed3ae12a2f8fa3e87f7c90b Mon Sep 17 00:00:00 2001 From: duhui Date: Wed, 2 Dec 2020 10:08:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=B0=86=E6=9D=A5=E8=A2=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/ActivityProto.proto | 15 +++++++++++++++ protos/MessageTypeProto.proto | 4 ++++ 2 files changed, 19 insertions(+) diff --git a/protos/ActivityProto.proto b/protos/ActivityProto.proto index 3ded1b5..72202ce 100644 --- a/protos/ActivityProto.proto +++ b/protos/ActivityProto.proto @@ -34,4 +34,19 @@ import "CommonProto.proto"; message SpecicalMonsterChooseRequest{ optional int32 activityId = 1; optional int32 selectId = 2; + } + + // 新将来袭 + message NewGeneralAttackRequest{ + // 活动id + optional int32 activityId = 1; + // 使用次数类型id + optional int32 privilageTypeId = 2; + } + + message NewGeneralAttackResponse{ + // 战斗属性 + optional FightData fightData = 1; + // 道具 + optional Drop drop = 2; } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index fe2769d..5d55e19 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1099,6 +1099,10 @@ enum MessageType{ SeletSubRewardPoolRequest = 303671;//易经宝库 SeletSubRewardPoolResponse = 303672; + //303691 - 30390 新将来袭 + NewGeneralAttackRequest = 303691; + NewGeneralAttackResponse = 303692; + }