diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 81a488a..adddecb 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -63,6 +63,7 @@ option optimize_for = SPEED; optional int32 rebuildLevel = 5; //重铸等级 optional int32 createTime = 6;//入手时间 optional int32 skillId = 7;//装备附带技能 + optional int32 isLocked = 8; //是否被锁定 1:被锁定 0:未锁定 } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index d7ff573..f4253a1 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -123,6 +123,8 @@ enum MessageType{ EVENT_UPDATE_REQUEST = 10406; // 更新事件 EVENT_UPDATE_RESPONSE = 10407; + EQUIP_LOCK_REQUEST = 10408; //装备锁定 + EQUIP_LOCK_RESPONSE = 10409; // F 10500 FIGHT_START_REQUEST = 10500; // FIGHT_START_RESPONSE = 10501; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index d1554ea..c6110e0 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -401,5 +401,9 @@ import "CommonProto.proto"; message storeUpdateIndication{ repeated StoreInfo storeInfo =1; } - + //装备锁定 + message LockEquip{ + repeated string id = 1; + optional int32 type = 2;//1:锁定操作 2:解锁操作 + }