diff --git a/game.proto b/game.proto index f3559c9..8fa0d5b 100644 --- a/game.proto +++ b/game.proto @@ -54,4 +54,9 @@ message RoleUpdatePropertyRsp { //ResponseCmd RoleUpdateItemsRsp message RoleUpdateItemsRsp { string items = 1; +} + +//ResponseCmd EquipmentAddRsp +message EquipmentAddRsp { + models.Equipment equip = 1; } \ No newline at end of file diff --git a/models.proto b/models.proto index 062a366..ccf7926 100644 --- a/models.proto +++ b/models.proto @@ -26,6 +26,7 @@ message Equipment { string type = 3; int32 enhance_level = 4; string hero_id = 5; + int32 quality = 6; } message Prop { diff --git a/protocode.proto b/protocode.proto index d3f0d04..8d27d12 100644 --- a/protocode.proto +++ b/protocode.proto @@ -16,5 +16,6 @@ enum ProtoCode RoleRsp = 8; RoleUpdatePropertyRsp = 9; RoleUpdateItemsRsp = 10; + EquipmentAddRsp = 11; } \ No newline at end of file -- libgit2 0.21.2