Task【ID1006175】【新战斗版本】宝物合成
parent
f81c78a1d4
commit
752b0970b5
|
|
@ -200,3 +200,16 @@ import "CommonProto.proto";
|
|||
optional Drop drop = 2;//合成的装备
|
||||
}
|
||||
|
||||
|
||||
message ComplexJewelEquipRequest{
|
||||
optional int32 type = 1;//宝器类型 灵宝、魂宝
|
||||
optional int32 rance = 2;//宝器属性
|
||||
optional int32 targetleve = 3;//目标品质 0一键合成
|
||||
optional int32 num = 4;//合成数量
|
||||
}
|
||||
|
||||
message ComplexJewelEquipResponse{
|
||||
repeated string equipIds =1;//消耗的装备
|
||||
optional Drop drop = 2;//合成的装备
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -896,6 +896,7 @@ enum MessageType{
|
|||
|
||||
//30000以后 新增协议号使用协议名定义 协议号自动映射
|
||||
|
||||
//30000-3300 公会
|
||||
FamilyFeteRequest = 30001;//祭祀
|
||||
FamilyFeteResponse = 30002;//祭祀
|
||||
|
||||
|
|
@ -903,4 +904,11 @@ enum MessageType{
|
|||
FamilyGetFeteRewardResponse = 30004;//
|
||||
|
||||
FamilyFeteRewardProcessIndication = 30005 ; // 更新公会进度
|
||||
|
||||
|
||||
|
||||
//30301-30330 宝物合成
|
||||
|
||||
ComplexJewelEquipRequest = 30301; // 宝物合成
|
||||
ComplexJewelEquipResponse = 30302;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue