master_huanxiang
parent
49e086be92
commit
8eb45d7a08
|
|
@ -19,6 +19,8 @@ option optimize_for = SPEED;
|
|||
optional string familyId = 6;
|
||||
optional string head = 7;
|
||||
optional int32 curMapId = 8;
|
||||
optional int32 workLevel = 9; // 工坊等级
|
||||
optional int32 workExp = 10; // 工坊经验
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -115,6 +115,15 @@ enum MessageType{
|
|||
|
||||
// V 12100
|
||||
// W 12200
|
||||
WORKSHOP_FOUNDATION_REQUEST = 12200; //基础打造
|
||||
WORKSHOP_FOUNDATION_RESPONSE = 12201;
|
||||
|
||||
WORKSHOP_EQUIP_CREATE_REQUEST = 12202; //装备打造
|
||||
WORKSHOP_EQUIP_CREATE_RESPONSE = 12203;
|
||||
|
||||
WORKSHOP_REBUILD_REQUEST = 12204; //装备重铸
|
||||
WORKSHOP_REBUILD_RESPONSE = 12205;
|
||||
|
||||
// X 12300
|
||||
// Y 12400
|
||||
// Z 12500
|
||||
|
|
|
|||
|
|
@ -62,3 +62,26 @@ import "CommonProto.proto";
|
|||
message TakeMailResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
||||
|
||||
|
||||
message WorkShopFoundationRequest{
|
||||
optional int32 materialId = 1; // 要打造的材料模板id
|
||||
optional int32 nums =2; //数量
|
||||
}
|
||||
|
||||
message WorkShopFoundationResponse{
|
||||
optional int32 workExp =1;
|
||||
optional int32 workLevel =2;
|
||||
}
|
||||
|
||||
message WorkShopEquipCreateRequest{
|
||||
optional int32 equipTid = 1; // 要打造的装备模板id
|
||||
repeated int32 runneIds = 2; // 符文ids 不需要传送特殊符文。
|
||||
}
|
||||
|
||||
message WorkShopRebuildRequest{
|
||||
optional string equipId = 1; // 要重造装备动态id
|
||||
repeated string consumeEquipIds =2; //祭品动态id
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue