amn34 / react-rogue

Rougelike game created using JavaScript/React/Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Play at https://amn34.github.io/react-rogue/.

Traverse the endless dungeon and collect weapons/armor to defeat the enemies you encounter.

Walk into any of the symbols in the game to interact with them.

Entities

@ : The player character

# : Shield, Adds to player defense

/ : Sword, Adds to player attack

! : Potion, Restores healths and adds to max health

$ : Gold

Q : Shopkeeper

> : Stairs to the next floor

Monsters

R: Rats

  • Health: 2 + (4 * Level)
  • Attack: 1 + (4 * Level)
  • Defense: 0 + (2 * Level)
  • Reward: 1 + (1 * Level)

S: Snake

  • Health: 3 + (4 * Level)
  • Attack: 2 + (4 * Level)
  • Defense: 0 + (2 * Level)
  • Reward: 2 + (1 * Level)

O: Ogre

  • Health: 5 + (4 * Level)
  • Attack: 2 + (4 * Level)
  • Defense: 0 + (2 * Level)
  • Reward: 3 + (1 * Level)

P: Penguin

  • Health: 10 + (4 * Level)
  • Attack: 3 + (4 * Level)
  • Defense: 0 + (2 * Level)
  • Reward: 6 + (1 * Level)

About

Rougelike game created using JavaScript/React/Node.js


Languages

Language:JavaScript 91.3%Language:HTML 8.7%