# 字母猎手 **Repository Path**: Megasu/letter-hunter ## Basic Information - **Project Name**: 字母猎手 - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-30 - **Last Updated**: 2026-06-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Letter Hunter Letter Hunter is a casual puzzle game developed using the Phaser 3 engine. ## Game Introduction Letter Hunter is a simple and fun letter-matching game. Players earn points by capturing the correct letters or numbers while avoiding obstacles such as bombs. ## Game Mechanics - Capture the correct letters/numbers to earn points - Avoid bombs and explosions - Achieve a sufficient score to win - The game ends if hit by a bomb ## Technology Stack - [Phaser 3](https://phaser.io/) - HTML5 game engine ## Project Structure ``` letter-hunter/ ├── assets/ # Game image assets │ ├── baozha.png # Explosion effect │ ├── bg.png # Background image │ ├── bomb.png # Bomb │ ├── five.png # Number 5 │ ├── green.png # Green element │ ├── one.png # Number 1 │ ├── red.png # Red element │ ├── three.png # Number 3 │ └── yellow.png # Yellow element ├── audio/ # Game sound effects │ ├── bgm.mp3 # Background music │ ├── explosion.mp3 # Explosion sound │ ├── gameover.mp3 # Game over sound │ └── win.mp3 # Win sound └── lib/ # Third-party libraries └── Phaser3.min.js ``` ## How to Run Since this project is built with Phaser 3, it must be run in a web server environment: 1. Use any web server (e.g., Live Server, XAMPP, WAMP, etc.) 2. Or start a simple server using Python: ```bash python -m http.server 8080 ``` 3. Open your browser and navigate to `http://localhost:8080` ## License Please refer to the LICENSE file in the project for detailed information.