Commit 35d123c8530746c3d758ee4afd97c52cb1f466e6

Authored by saicom
1 parent 1a7c1c0e

新增天赋属性

Showing 3 changed files with 11 additions and 0 deletions   Show diff stats
models.proto
... ... @@ -134,6 +134,8 @@ message Role {
134 134 string channel = 29;
135 135 map<string,string> climb_rs = 30; // reward and start
136 136 repeated string new_heroes= 31;
  137 +
  138 + map<int32,bool> talent_tree = 32;
137 139 }
138 140  
139 141 message Activity {
... ...
protocode.proto
... ... @@ -27,6 +27,7 @@ enum ProtoCode
27 27 RoleEndClimbRpc = 119;
28 28 RoleRankClimbRpc = 120;
29 29 RoleMoppingUpRpc = 121;
  30 + ActivateTalentTreeNodeRpc = 122;
30 31  
31 32 HeroEquipReferRpc = 201;
32 33 HeroFragmentCovertRpc = 202;
... ...
role.proto
... ... @@ -208,3 +208,11 @@ message RoleMoppingUpRsp {
208 208 repeated string reward = 1;
209 209 repeated string drop_reward = 2;
210 210 }
  211 +
  212 +
  213 +message ActivateTalentTreeNodeReq {
  214 + int32 id = 1;
  215 +}
  216 +
  217 +message ActivateTalentTreeNodeRsp {
  218 +}
... ...