A complete Frogger-style game implemented in Python using Pygame.
- Install Python 3.x and Pygame:
pip install pygame - Run the game:
python main.py
- Selectable difficulty (Easy, Medium, Hard)
- Persistent highscores with initials
- Classic Frogger gameplay: cross road and river, avoid cars, ride logs
- Modular, well-commented code
- Place any custom images in the
assets/folder (optional). By default, the game uses colored shapes as placeholders.
main.py- Game entry pointconfig.py- Game configuration and constantssprites.py- Sprite classes for frog, cars, logshighscores.py- Highscore managementassets/- Folder for images (optional)highscores.json- Persistent highscore table (auto-created)
Enjoy the game!