Commit cac48a9ac959ae8d819f38ba325f6c2f5a740ccf

Authored by zhangqijia
1 parent 35d123c8

fix: 关卡罐子掉落,宝箱掉落

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
role.proto
... ... @@ -67,9 +67,15 @@ message RoleStartBattleReq {
67 67 int32 carbon_id = 2;
68 68 }
69 69  
  70 +message DropReward {
  71 + map<string,int32> reward = 1;
  72 +}
  73 +
70 74 message RoleStartBattleRsp {
71 75 int32 cur_sp = 1;
72 76 string drop_reward = 2;
  77 + repeated string item_reward = 3;
  78 + repeated string treasure_reward = 4;
73 79 }
74 80  
75 81 message RoleEndBattleReq {
... ...