Miss_Tempest is a 2D pixel art platformer game where players navigate through challenges, fight bosses, and compete on a dynamic scoreboard. Built with a custom-made set of pixel art sprites and a seamless backend in PHP, this game is hosted on a MySQL database with email notifications for key events like high scores.
Check out the live demo: Miss_Tempest Live Demo
- HTML5 Canvas: Custom 2D game rendering on a canvas
- JavaScript: Core game logic and user interactions
- CSS: Styling for game interface (minimalist and clean design)
- PHP: Server-side logic and game state management
- MySQL: Database for player data, high scores, and game states
- 🎮 2D Platformer Gameplay: Custom pixel art sprites for a nostalgic platformer experience.
- 🏆 Scoreboard: Real-time display of player scores and high-score leaderboards.
- ⚔️ Boss Fights: Challenge yourself in epic boss battles at the end of each level.
- 📧 Email Notifications: Automated email updates when players achieve high scores or complete significant milestones.
- 💾 MySQL Database: Store player data and scores securely with persistent game state.
Here are some screenshots from the game:
Check out a gameplay video on X (formerly Twitter):
git clone https://github.com/DraymeM/Miss_Tempest.git
cd Miss_TempestEnsure you have a PHP server (e.g., XAMPP or LAMP stack) running.
Modify the config.php file to add your MySQL credentials.
<?php
$servername = "localhost";
$username = "root"; // Your MySQL username
$password = ""; // Your MySQL password
$dbname = "miss_tempest";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>🧑💻 Author
- DraymeM – Frontend and Backend Developer, Game Design, Art and Animations.
- Custom Pixel Art: All pixel art for the game was created by myself, including the characters, environments, and animations.
- Game logic influenced by classic 2D platformers.
- Special thanks to the MySQL, PHP, and JavaScript communities for their resources.