From 6d1c5336bda5b3ea254e236970184142c26dc40a Mon Sep 17 00:00:00 2001 From: lvxinran Date: Fri, 21 Aug 2020 16:52:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E4=BC=9A=E5=89=AF=E6=9C=AC=E5=8D=8F?= =?UTF-8?q?=E8=AE=AE=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/Family.proto | 14 ++++++++++++++ protos/MessageTypeProto.proto | 6 ++++++ 2 files changed, 20 insertions(+) diff --git a/protos/Family.proto b/protos/Family.proto index 5f64a5a..f1e6b0b 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -544,4 +544,18 @@ import "CommonProto.proto"; message GuildHelpLogIndication{//新的援助会推 optional GuildHelpLog guildHelpLog = 1; } + message GetGuildChallengeInfoResponse{ + optional int32 curBoss = 1;//当前bossId + optional int32 blood = 2;//剩余血量万分比 + optional int32 canSweep = 3;//是否能扫荡,今天是否挑战过这个boss + } + message GuildChallengeRequest{ + optional int32 bossId = 1;//bossId + optional int32 type = 2;//0为挑战 1为扫荡 + } + message GuildChallengeResponse{ + optional int32 kill = 1;//本次是否击杀boss + optional Drop drop = 2; + optional FightData fightData = 3;//战斗 + } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index d6045dc..82e4db9 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -484,7 +484,13 @@ enum MessageType{ GET_CAR_GRAP_RECORD_REQUEST = 16674; //获取车迟抢夺记录 GET_CAR_GRAP_RECORD_RESPONSE = 16675; + + GET_GUILD_CHALLENGE_INFO_REQUEST = 16676;//获取公会副本信息 + GET_GUILD_CHALLENGE_INFO_RESPONSE = 16677; + + GUILD_CHALLENGE_REQUEST = 16678;//挑战公会副本 + GUILD_CHALLENGE_RESPONSE = 16679; // H 10700 HERO_RAND_REQQUEST = 10701; HERO_RAND_RESPONSE = 10702;