Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 819 Bytes

readme.md

File metadata and controls

41 lines (24 loc) · 819 Bytes

Dungeons of Doom

A simple console game taking place in a 2d-array printed to the console.

Image of game

Requirements

NodeJS

NPM

Installation

Clone project.

Cd to repo.

Run npm install.

How to play

Cd to repo.

Run node app.js

Use the arrow keys to move.

TODO:

  • Player can attack and kill monsters.
  • Monsters can attack and kill player.
  • Monsters can chase after player.
  • Add walls to the game thereby requiring pathfinding algorithms for monsters to chase.
  • Add potions such as health potions that the player can pick up.
  • Add an inventory for the player.
  • Monsters and player does not spawn at the same location.
  • Use better symbols for the game world.
  • Clear console after each move.