|
@@ -20,5 +20,17 @@ message EnterStoryRequest {
|
|
repeated CommonRequest envelope = 5; // 公共必传参数集
|
|
repeated CommonRequest envelope = 5; // 公共必传参数集
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+message EntryStoryResponse{
|
|
|
|
+ optional int32 story_id=1; //关卡id
|
|
|
|
+ optional int32 battle_status=2; //战斗状态:0-进行中,1-胜利,2-失败
|
|
|
|
+ repeated StoryAwardItemVo story_award_items=3; //多个道具
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+message StoryAwardItemVo{
|
|
|
|
+ optional int32 item_id=1; //道具id
|
|
|
|
+ optional int32 quantity=2; //数量
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
|
|
|
|
|