Skip to content

Commit

Permalink
Add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Donot committed Nov 16, 2023
1 parent 0d68cc8 commit 4e23b35
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
52 changes: 52 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
### DESCRIPTION

This platformer is still in development.
There is no clear objective to this project.

Currently 3 maps playable

**Controls : Arrows**

### COMPILE TUTORIAL

First, install pyinstaller :
```
pip install pyinstaller
```

Then, go on the project folder and compile the main.py file using :
```
pyinstaller --onefile main.py
```
*This command can take some time.*

Then, in the **dist** folder, you now have a ***main.exe*** file. Just run it to play the game.


### IDEAS

Ennemies :
- flying
- throwing
- walking same path
- try to go to player

type of blocks :
- portals
- lava (put back to spawn point)
- locked door (need a key to open it)

Game over screen (need lives system)

Score (need pieces to collect on the levels)

Winning screen :
- timer shown at the end
- score shown at the end

First page :
- "Adventure mode" --> all levels sorted
- "Level mode" --> can choose the levels

New gameplay :
- 1v1 : 2 players, first to the winning block win
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from game import *


g = Game(fps=60, maps=[2])
g = Game(fps=60, maps=[0,1,2])

0 comments on commit 4e23b35

Please sign in to comment.