An open API service indexing awesome lists of open source software.

https://github.com/jaketherealone/2048

2048 puzzle game
https://github.com/jaketherealone/2048

Last synced: 3 months ago
JSON representation

2048 puzzle game

Awesome Lists containing this project

README

          

# 2048 - terminal

![gameplay](https://github.com/JakeTheRealOne/2048/blob/master/screenshots/gameplay.png)

## How to run the game:
(default settings: language: English, keyboard: AZERTY, difficulty: normal)

python3 source/main.py

## Need help ?
python3 source/main.py --help

## Rules
(more details [here](https://en.wikipedia.org/wiki/2048_(video_game)))
1. Objective: Combine tiles to reach the 2048 tile.

2. Gameplay:

Use arrow keys (or swipe) to move tiles on a 4x4 grid.
When two tiles with the same number touch, they merge into one with their sum.

3. Tiles:

Every move, a new tile (2 or 4) appears in an empty spot on the board.

4. Winning: The game is won when a tile with the value 2048 appears on the board.

5. Losing: The game ends when no more moves are possible (no empty spaces and no adjacent tiles with the same value).

## Credits
This game was created by Gabriele Cirulli.
Check his work here: https://github.com/gabrielecirulli/2048/tree/master