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