Skip to content

ZENZO-Ecosystem/game

 
 

Repository files navigation

A Bomberman-style game with multiplayer option.

A Bomberman-style game with multiplayer option made with Phaser.js, Node.js, Express.js, Socket.io.

Game description:

The game is designed for up to three players.

Games can be played on one of two maps.

Maps

Player models user will receive randomly when he will enter the game.

The winning player is the last one standing.

Within the game, players can upgrade skills like: ( Change to drop - 50% when player break the block )

  • Speed Up Speed: can increase to 3
  • Bomb setting time Bomb setting time: can be reduced to 0.5 seconds
  • Power Up Power: no limit

Demo:

You can find a tutorial on how to make Bomberman-style games here: Tutorial (need work)

A demo of this game can be found on Heroku: Bomberman with multiplayer - Demo

Note: To play the game, you should open the browser in two separate windows. The game pauses when You open a new tab in the same window. Open game in different windows.

Game: Click to play:

Preview

Menu: Click to play:

Preview

Setup:

The game requires Node and Yarn (npm) package manager. Make sure that you already have both installed on your system before trying to launch it.

Steps:

  1. Clone the repository.
  2. Run yarn install inside a newly created directory.
  3. Start the server with the command yarn run server ( defined in the package.json file ). This will launch webpack in your development environment and then start the node server.
  4. Check out the game at http://localhost:3000
  5. Enjoy!

Notes:

You can use my code as a boilerplate if you want, but I would suggest you change the tile sizes. I've picked tiles that are 35x35 pixels, but tiles that are 32x32 would be more ideal. All free templates are based on this tile size, and it is also handily divisible by 2.

To Debug Node process:

  1. Open: chrome://inspect/#devices
  2. Click 'Open dedicated DevTools for Node'
  3. "server": "webpack --mode development && node --inspect server/app.js",

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.1%
  • Other 0.9%