From 4e23b35b533e2f39e8cd6283ede07af45068c7a8 Mon Sep 17 00:00:00 2001 From: Mr-Donot Date: Thu, 16 Nov 2023 16:50:22 +0100 Subject: [PATCH] Add README.md --- README.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ main.py | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5592125 --- /dev/null +++ b/README.md @@ -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 \ No newline at end of file diff --git a/main.py b/main.py index 552b7a2..e02bea7 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,4 @@ from game import * -g = Game(fps=60, maps=[2]) \ No newline at end of file +g = Game(fps=60, maps=[0,1,2]) \ No newline at end of file