https://github.com/jaketherealone/2048
2048 puzzle game
https://github.com/jaketherealone/2048
Last synced: 3 months ago
JSON representation
2048 puzzle game
- Host: GitHub
- URL: https://github.com/jaketherealone/2048
- Owner: JakeTheRealOne
- License: gpl-3.0
- Created: 2023-11-14T10:11:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-29T12:18:25.000Z (over 1 year ago)
- Last Synced: 2025-03-15T06:41:27.467Z (11 months ago)
- Language: Python
- Homepage: https://github.com/gabrielecirulli/2048/tree/master
- Size: 170 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 2048 - terminal

## 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