master_huanxiang
wangyuan 2019-02-14 17:53:16 +08:00
parent 49e086be92
commit 8eb45d7a08
3 changed files with 35 additions and 1 deletions

View File

@ -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; //
}

View File

@ -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

View File

@ -61,4 +61,27 @@ 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
}