From 0f2b5f2fe2727f62d3258fff413293b38d3b5f81 Mon Sep 17 00:00:00 2001 From: mashiyu Date: Tue, 8 Jan 2019 09:37:36 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 290eba1..0621676 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -42,6 +42,8 @@ message Common{ optional int32 pDefence= 9; optional int32 mDefence= 10; optional int32 speed= 11; + repeated Skill skillList = 12; + repeated Equip equipList = 13; } @@ -84,7 +86,9 @@ message Common{ message Equip{ optional string id = 1; - optional int32 itemId = 2; + optional int32 equipId = 2; + optional int32 level = 3; + optional int32 star = 4; }