https://github.com/pkarpovich/ff7-remake-game-script
https://github.com/pkarpovich/ff7-remake-game-script
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pkarpovich/ff7-remake-game-script
- Owner: pkarpovich
- Created: 2025-02-14T21:51:00.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-02-16T22:49:42.000Z (4 months ago)
- Last Synced: 2025-02-16T23:20:51.088Z (4 months ago)
- Language: TypeScript
- Size: 1.13 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FF7 Remake Script Parser
This repository includes two main components:
- **Web Application**: A web-based tool for reading and navigating the Final Fantasy VII Remake script. The application features a clean, responsive UI with dark mode support and customizable font sizing.
- **Parser Tool**: A command-line utility that converts the Final Fantasy VII Remake game script from Word documents into a structured JSON format.## Features
- Clean and responsive user interface for script navigation.
- Dark mode support and adjustable font size.
- Structured data output from Word documents, including chapters, subchapters, and dialogues.## Usage
```bash
python -m game_script_parser.main input.docx output.json
```### Word Document Format
1. Chapters should be formatted as: `Chapter X - Chapter Title`
2. Subchapters are marked with: `// Subchapter Title //`
3. Dialogues should be written as: `(Character) - Dialogue text`Example:
```
Chapter 1 - The Destruction of Mako Reactor 1// Train Station //
(Cloud) - Mako... Never seen so much of it.
(Barret) - This is Mako Reactor 1.
```