diff --git a/hero.proto b/hero.proto index cc1218d..a4e4d7f 100644 --- a/hero.proto +++ b/hero.proto @@ -131,4 +131,10 @@ message HeroBatchSkillUpLevelRsp { map skills = 6; } +message HeroOpenNewReq { + repeated string hero_id = 1; +} +message HeroOpenNewRsp { + repeated string new_heroes = 1; +} diff --git a/models.proto b/models.proto index e745001..0c9e607 100644 --- a/models.proto +++ b/models.proto @@ -137,6 +137,7 @@ message Role { int64 ctime = 28; // 创建时间 string channel = 29; map climb_rs = 30; // reward and start + repeated string new_heroes= 31; } message Activity { @@ -154,6 +155,7 @@ message Task { map month_task = 5; map specify_task = 6; + map achievement = 7; } message Dispatch { diff --git a/protocode.proto b/protocode.proto index 125d25d..97fb397 100644 --- a/protocode.proto +++ b/protocode.proto @@ -40,6 +40,7 @@ enum ProtoCode HeroUpGradeRpc = 210; HeroUpMemorySlotRpc = 211; HeroBatchSkillUpLevelRpc = 212; + HeroOpenNewRpc = 213; EmailListRpc = 301; EmailDrawRpc = 302; -- libgit2 0.21.2