From c03f395c764e8c572fbaaec92cc9ead5bf0098f8 Mon Sep 17 00:00:00 2001 From: "PC-202302260912\\Administrator" <1769111741@qq.com> Date: Thu, 19 Oct 2023 10:53:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=95=E5=AE=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 99362c9..6898ad5 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -637,4 +637,28 @@ message PotentialBackLvRequest{ message PotentialBackLvResponse{ optional Drop drop = 1; -} \ No newline at end of file +} + +// 法宝 +message BaublesAllInfoRequest{ +} + +message BaublesAllInfoResponse{ + repeated Equip baubles = 1; +} + +message BaublesWearRequest{ + optional string heroId = 1; + optional string baublesId = 2;// 传空串表示卸下 +} + +message BaublesStrengthenRequest{ + optional string baublesId = 1; + optional int32 upLv = 2; //升级的等级 +} + +message BaublesBlessRequest{ + optional string baublesId = 1;//主法宝id + optional string blessBaublesId = 2;//庇佑得id +} +