An interactive visual novel game built with Next.js that helps players learn about interacting with deaf and hard of hearing individuals. Features LLM-powered dynamic conversations using Google's Gemini API.
Try it here: Sign Language Visual Novel
Kway Ler Koon, Vaisiya Balakrishnan, Pearl Pay, Cynthia Ng, Atharshlakshmi Vijayakumar
- Interactive visual novel gameplay with branching storylines
- LLM-powered dynamic character responses using Gemini API
- Background music and sound effects
- Typewriter-style dialogue with text scroll sounds
- Relationship tracking system
- Character sprites with multiple expressions
- Save/Load game state
- Node.js 18+
- A Google Gemini API key
- Clone the repository:
git clone https://github.com/klk645445/SignLanguageVisualNovel.git
cd SignLanguageVisualNovel- Install dependencies:
npm install- Create your
.envfile in the root directory:
touch .env- Add your Gemini API key to the
.envfile:
GEMINI_API_KEY=your_gemini_api_key_here
You can get a free Gemini API key from Google AI Studio.
- Run the development server:
npm run dev- Open http://localhost:3000 with your browser to play!
├── app/
│ ├── api/gemini/ # Gemini API routes
│ ├── components/visual-novel/ # VN components
│ ├── data/ # Story data
│ └── types/ # TypeScript types
├── public/
│ ├── audio/ # BGM and SFX
│ ├── backgrounds/ # Scene backgrounds
│ └── characters/ # Character sprites
See VISUAL_NOVEL_GUIDE.md for detailed documentation on how to create your own stories, add characters, and customize the game.
The easiest way to deploy your Next.js app is to use the Vercel Platform.
Important: Remember to add your GEMINI_API_KEY to your Vercel environment variables.
This project was created for an educational hackathon.