| --- |
| license: apache-2.0 |
| task_categories: |
| - text-classification |
| language: |
| - en |
| tags: |
| - game |
| pretty_name: StarData (honkai-starRail) |
| --- |
| ## OverView |
| 1. `json_output.7z` : json 형태의 파싱된 데이터. |
| 2. `vector_index.7z` : 파싱된 데이터를 SQL로 테이블을 만든 후 LanceDB를 이용해 생성된 벡터 인덱스. |
| 3. 원본 데이터 출처 [붕괴 스타레일](https://honkai-star-rail.fandom.com/wiki/Hexanexus:_Development_Team_Interview) |
|
|
| ## Dataset Structure Overview |
|
|
| ### 1. Version (버전) |
| - version_infobox: |
| - title (제목): string |
| - version (버전 번호): string |
| - release_date (출시일): string |
| - previous_version (이전 버전): string |
| - next_version (다음 버전): string |
| - description (설명): string |
| - events (이벤트 목록): list[string] |
| - missions (미션 데이터): dict |
| - category_name (카테고리명): list[dict] |
| - main_mission (메인 미션): string |
| - sub_missions (서브 미션): list[string] |
| |
| ### 2. Chapter (챕터) |
| - chapter_info: |
| - type (유형): string |
| - chapter_title (챕터 제목): string |
| - chapter_number (챕터 번호): string |
| - next_chapter (다음 챕터): string |
| - mission_list (미션 리스트): list[string] |
| - side_missions (사이드 미션): list[dict] |
| - mission (미션명): string |
| - children (하위 미션): list[dict] |
| |
| ### 3. Mission (임무 - 상세) |
| - id (ID): integer |
| - title (미션 제목): string |
| - image (이미지 경로): string |
| - type (임무 유형): string |
| - event_name (관련 이벤트명): string |
| - chapter (소속 챕터): string |
| - requirements (선행 요구사항): string |
| - summary (줄거리 요약): string |
| - characters (등장 캐릭터): list[string] |
| - world (월드): string |
| - area (지역/구역): string |
| - start_location (시작 위치): string |
| - rewards (보상 정보): |
| - reward_exp (개척 경험치): integer |
| - reward_travel_encounters (여행 가이드): integer |
| - reward_credits (신용 포인트): integer |
| - steps (진행 단계): string/list |
| - dialogue (대화 데이터): list[DialogueNode] |
| |
| ### 4. Location (지역/장소) |
| - title (지역명): string |
| - image (이미지): string |
| - type (유형): string |
| - world (소속 월드): string |
| - region (구역): string |
| - description (설명): string |
| - history (역사/기록): string |
| - Activities (활동): list[string] |
| - location (세부 위치): list[string] |
| - Exploration (탐사 요소): list[dict{key: value}] |
| - Fragments of Recollection (회상의 조각): list[DialogueNode] |
| - Enlightenments (계시): list[dict] |
| - title/context/content |
| - Dialogue (조사 대화): list[DialogueNode] |
| - Enemies (출현 적): |
| - Normal (일반): list[string] |
| - Elite (정예): list[string] |
| |
| ### 5. Relic (유물) |
| - id (ID): integer |
| - title (이름): string |
| - image (이미지): string |
| - set (세트명): string |
| - piece (부위): string |
| - mentions (언급/관련 인물): string |
| - Description (짧은 설명): string |
| - Detail (상세 효과 설명): string |
| |
| --- |
| ### DialogueNode (대화 노드 구조) |
| - node_id (노드 고유 ID): integer |
| - parent_id (부모 노드 ID): integer (Optional) |
| - depth (깊이/계층): integer |
| - type (노드 유형): "dialogue" | "option" | "system" | "text" |
| - speaker (화자): string (e.g., "Trailblazer", "March 7th") |
| - content (내용): string |
| - audio_id (오디오 ID): string (Optional, e.g., "VO_Chapter_01") |
| - icon (선택지 아이콘): string (Optional) |
| - rewards (시스템 보상 아이템): string (Optional) |
| - children (하위 대화/분기): list[DialogueNode] |