A 2D Monster-Catching RPG made with Phaser 3.
Depending on your installed tools, you can use one of the following commands from this folder:
python -m http.serverThen open http://localhost:8000 in your browser.
npx http-server .Then open the displayed address (usually http://localhost:8080).
If you use VS Code, install the "Live Server" extension, right-click index.html, and select "Open with Live Server".
- Arrow Keys / WASD: Move Player
- Mouse Click: Interact with Menus / Dialogs
- ESC: Open Pause Menu (Save / Load)
- Exploration: Walk in the Green Grass to find wild monsters.
- Combat:
- Fight: Attack the enemy to lower its HP.
- Bag: Use a Capsule to try and catch the monster (easier if HP is low!). Use Potions to heal.
- Run: Escape from battle.
- NPC: Talk to the NPC for tips.
- Save/Load: Press ESC to save your progress (position, party, inventory).
- Add Monsters: Edit
src/data/monsters.jsand add a new entry. - Add Moves: Edit
src/data/moves.js. - Edit Map: Edit
src/scenes/World.js(thelevelarray).