diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index caa9466..8b28d4c 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -662,8 +662,10 @@ option optimize_for = SPEED; // 变身卡信息 message TransformationCardInfo{ optional int32 id = 1;//卡id - optional int32 index = 2;// 位置 - optional int32 status = 3;// 状态 + optional int32 index = 2;//位置 + optional int32 status = 3;//状态 + optional int32 level = 4;//升级 + optional int32 star = 5;//升星 } //无尽副本英雄信息 diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 4157445..affbd2b 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -505,6 +505,15 @@ import "CommonProto.proto"; optional int32 id = 1;//变身卡id optional int32 index = 2;//位置 } + //身外化身升级 升星 + message TransformationUpGradeRequest{ + optional int32 type = 1;//1:升级 1:升星 + optional int32 id = 2;//变身卡id + } + + message TransformationUpGradeResponse{ + optional TransformationCardInfo info = 1;//化身信息 + } //命石合成升级 message LifeStoneUpRequest{