diff --git a/games/simon/README.md b/games/simon/README.md index 14d334a..da6f5b2 100644 --- a/games/simon/README.md +++ b/games/simon/README.md @@ -1,6 +1,6 @@ -# Phaser 3 TypeScript - TEMPLATE +# Phaser 3 TypeScript - Simon -A Phaser 3 TypeScript example TEMPLATE. +A basic Phaser 3 TypeScript prototype of the game Simon. ## Local Development @@ -39,3 +39,11 @@ you should be able to open `http://myserver.com/index.html` and play your game. ### Static Assets Any static assets like images or audio files should be placed in the `public` folder. It'll then be served at `http://localhost:8080/path-to-file-your-file/file-name.file-type`. + +## Ideas for improvement + +* add simple score mechanic +* add high local high scores +* create npm package for the simon game class +* add support for mobile +* add title & game over screens diff --git a/games/simon/package.json b/games/simon/package.json index 4cb722e..6656419 100644 --- a/games/simon/package.json +++ b/games/simon/package.json @@ -1,7 +1,7 @@ { - "name": "@devshareacademy/phaser-3-typescript-game-template", + "name": "@devshareacademy/phaser-3-simon-prototype", "version": "1.0.0", - "description": "A basic Phaser 3 Typescript project template that uses Vite.", + "description": "A basic Phaser 3 Typescript prototype for the game Simon.", "scripts": { "start": "vite --config config/vite.config.js", "build": "tsc && vite build --config config/vite.config.js",