Update README.md
This commit is contained in:
parent
66e624a44d
commit
c82d2373da
37
README.md
37
README.md
|
|
@ -1,4 +1,27 @@
|
||||||
## WIP WIP WIP
|
# TROS
|
||||||
|
This is a CLI game where you have to guess the sorting algorithm used to sort a randomly generated list of numbers based on the passes displayed on the screen.
|
||||||
|
The game has 3 difficulty modes:
|
||||||
|
1. **Easy**: When you make a wrong guess, you score will be decremented by 10 and level by 1.
|
||||||
|
2. **Medium**: Score will be decremented by 20 and level by 10.
|
||||||
|
3. **Hard**: You lose the game when you make a single wrong guess.
|
||||||
|
|
||||||
|
## Levels
|
||||||
|
- There are total 10 levels and the number of elements the list has depends upon it. The levels are as follows:
|
||||||
|
|
||||||
|
| Level | Elements |
|
||||||
|
|-------|----------|
|
||||||
|
| 1 | 5 Elements |
|
||||||
|
| 2 | 8 Elements |
|
||||||
|
| 3 | 11 Elements |
|
||||||
|
| 4 | 14 Elements |
|
||||||
|
| 5 | 17 Elements |
|
||||||
|
| 6 | 20 Elements |
|
||||||
|
| 7 | 23 Elements |
|
||||||
|
| 8 | 26 Elements |
|
||||||
|
| 9 | 29 Elements |
|
||||||
|
| 10 | 32 Elements |
|
||||||
|
|
||||||
|
At the moment the score system is useless, and doesnt really make a difference on the gameplay, but i do plan on adding features, such as high score.
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
- [x] Algorithms to be implemented:
|
- [x] Algorithms to be implemented:
|
||||||
|
|
@ -9,17 +32,5 @@
|
||||||
- [x] Implement Score system
|
- [x] Implement Score system
|
||||||
- [ ] Code Refactoring/Cleaning
|
- [ ] Code Refactoring/Cleaning
|
||||||
|
|
||||||
## Levels:
|
|
||||||
1: 5 elems\
|
|
||||||
2: 8 elems\
|
|
||||||
3: 11 elems\
|
|
||||||
4: 14 elems\
|
|
||||||
5: 17 elems\
|
|
||||||
6: 20 elems\
|
|
||||||
7: 23 elems\
|
|
||||||
8: 26 elems\
|
|
||||||
9: 29 elems\
|
|
||||||
10: 32 elems
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Reference in New Issue