From 8eaba85661c52a7b361fc034b88efa8654878ea5 Mon Sep 17 00:00:00 2001 From: grimm <1769111741@qq.com> Date: Thu, 4 Jan 2024 15:26:19 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A4=BC=E7=89=A9=E5=8D=87=E6=98=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 9 +++++++++ protos/MessageTypeProto.proto | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 76637ce..7f78881 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -619,6 +619,15 @@ message GiftEquipWearRequest{ repeated int32 giftIds = 3;//礼物id列表 } +// 礼物装备升星 +message GiftEquipUpStarRequest{ + optional int32 giftId = 1;//礼物 +} + +message GiftEquipUpStarResponse{ + optional Drop drop = 1;//掉落 +} + // 潜能 message PotentialUpLvRequest{ optional string heroId = 1;// 英雄id diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 030b4e0..d9cfe10 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1632,7 +1632,6 @@ enum MessageType{ IsCrossResponse = 9000026; IsCrossIndication = 9000027; - //========================================================== 6000000 起为bt协议========================================================== // gm修改器购买物品 GmBuyGoodRequest = 6000001; @@ -1677,6 +1676,10 @@ enum MessageType{ TrainingUpLvRequest = 6000031; TrainingUpLvResponse = 6000032; + // 礼物装备升星 + GiftEquipUpStarRequest = 6000033; + GiftEquipUpStarResponse = 6000034; + }