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; + }