Skkay / Rainikrone

Reproduction of the Rainikrone mini-game from Dofus in Javascript.

Home Page:https://rainikrone.dofus.skkay.fr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rainikrone

Reproduction of the Rainikrone mini-game from Dofus in Javascript.

How to play

The goal is to move the pawn to cross all the "objective" (pink) cells. But each type of cell has a particular effect:

  • Yellow cells: Becomes red and move one cell further.
  • Red cells: Becomes green and changes the cell's color on contact: yellow -> red -> green -> black -> yellow.
  • Green cells: Becomes yellow and move to the previous cell.
  • Black cells: Becomes red and moves to the last colorless cell crossed.
  • Pink cells: Becomes colorless validates an objective.

screenshot

Deploy

Deploy using Docker:

docker run -p 3000:80 skkay/rainikrone

Or a Docker Compose:

version: '3'

services:
  app:
    image: skkay/rainikrone
    ports:
      - 3000:80

Development

This project requires Node.js and Yarn to be installed.

  1. Clone the repository:
git clone https://github.com/Skkay/Rainikrone
cd Rainikrone
  1. Install dependencies:
yarn install
  1. Start the development server:
yarn run dev

Build for production

Using Docker:

docker compose build

Or using Yarn:

yarn run build

About

Reproduction of the Rainikrone mini-game from Dofus in Javascript.

https://rainikrone.dofus.skkay.fr


Languages

Language:JavaScript 57.5%Language:HTML 30.8%Language:CSS 10.4%Language:Dockerfile 1.3%