From 6deaeac11fa31d18f49595fb054e41bd48ca5fc4 Mon Sep 17 00:00:00 2001 From: mengchengzhen <13682025901@163.com> Date: Fri, 16 Apr 2021 17:16:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=85=E5=A4=87=E5=8D=87=E6=98=9F=EF=BC=88?= =?UTF-8?q?=E4=BA=91=E6=B8=B8=E5=95=86=E4=BA=BA=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 3 +++ protos/PlayerInfoProto.proto | 11 +++++++++++ 2 files changed, 14 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index dbcf1d2..dbe445a 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -884,6 +884,9 @@ enum MessageType{ SPECICAL_MONSTER_CHOOSE_REQUEST = 11846;//灵兽活动选择up灵兽 SPECICAL_MONSTER_CHOOSE_RESPONSE = 11847; + + EQUIP_UPLEVEL_REQUEST = 11848;//装备升星(云游商人) + EQUIP_UPLEVEL_RESPONSE = 11849; // T 11900 TRIGGER_EVENT_REQUEST = 11900; // TRIGGER_EVENT_RESPONSE = 11901; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index fb87255..0e1ee70 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -823,4 +823,15 @@ import "CommonProto.proto"; } message ActiveUserMountResponse{ optional int32 validTime = 1;//到期时间 + } + //装备升星 + message EquipUpLevelRequest{ + optional int32 activityId = 1; + optional int32 equipId = 2; + optional int32 itemId = 3; + optional int32 itemNum = 4; + } + message EquipUpLevelResponse{ + optional bool result = 1; + optional Drop drop = 2; } \ No newline at end of file