diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index aa8d7fc..41eebba 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1746,6 +1746,9 @@ enum MessageType{ PlayerGodLevelUpRequest = 7000023; PlayerGodLevelUpResponse = 7000024; + //图鉴技能 + UnLockHandBookSkillRequest = 7000030; + UnLockHandBookSkillResponse = 7000031; } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index b070bdf..d828a00 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -95,6 +95,7 @@ message GetPlayerInfoResponse{ repeated int32 giftIds = 52;//礼物装备列表 repeated int32 gemLotteryCountByDay = 53;//每日命石抽卡次数记录 optional int32 isStart = 54;//跨服时间判断,距离开服时间过去几周 + repeated int32 handBookSkills = 55;//解锁的图鉴技能id集合 } @@ -1413,4 +1414,12 @@ message PlayerGodLevelUpRequest{ } //主角成神进阶结果 message PlayerGodLevelUpResponse{ +} +//解锁图鉴技能 +message UnLockHandBookSkillRequest{ + optional int32 handBookSkillId = 1;//解锁的图鉴技能id +} +//解锁图鉴技能返回结果 +message UnLockHandBookSkillResponse{ + optional int32 handBookSkillId = 1;//解锁成功的图鉴技能id } \ No newline at end of file