As a hooded witcher 🐺, you traverse through the grim world collecting coins and try to get the best time and score.
Find a file
Hariss Ali Gills 07b916194f Added Favicon
2021-08-27 14:19:47 +03:00
.vscode Add published repo 2021-08-18 15:01:18 +03:00
game_play_showcase Added Favicon 2021-08-27 14:19:47 +03:00
witcher-platformer/project_files Test to see if high_score will be saved when packaging 2021-08-22 19:46:47 +03:00
.gitignore Add published repo 2021-08-18 15:01:18 +03:00
LICENSE.txt Add published repo 2021-08-18 15:01:18 +03:00
README.md Added Favicon 2021-08-27 14:19:47 +03:00
setup.py Add published repo 2021-08-18 15:01:18 +03:00

Witcher Platformer Game

A one level platformer game

Gameplay

Witcher Platformer by Hariss-Gills As a hooded witcher 🐺, you traverse through the grim world collecting coins and try to get the best time and score.

Score is calculated by 1/Time + Points

  • Red coin = 10 points
  • Gold coin = 5 points
  • Silver coin = 1 point

Controls

  • W/⬆️/SPACE to Jump
  • A/⬅️ to move left
  • D/➡️ to move right
  • S/⬇️ to move down

Game Play

The gif doesn't do the graphics justice

Installation

You can Package the program using pyinsatller

  1. First Download latest version of python

  2. install pyinstaller with: pip install pyinstaller

  3. Enter the directory where the game.py file is and run this command: Not: Highscore Does not save and Loads Slower but more user-friendly

pyinstaller game.py --windowed --add-data "game_assets;game_assets" --name "Witcher Platformer" --icon  "game_assets\icon.ico" --onefile

or this command where Highscore saves and Loads Faster but less user-friendly:

pyinstaller game.py --windowed --add-data "game_assets;game_assets" --name "Witcher Platformer" --icon  "game_assets\icon.ico"

  1. Go into the Dist directory and run the Witcher PLatformer application

Functions

  • Full GUI
  • Options Menu
  • Pause Screen

Future Plans

  • Enemies (Difficult)
  • Animated Coins (Easy)
  • More Levels (Medium)

Release History

  • 0.0.1
    • Main Game Complete

Meta

Distributed under the GPL-3.0 License. See LICENSE.txt for more information.

https://github.com/Hariss-Gills/

Contributing

  1. Fork it (https://github.com/Hariss-Gills/Witcher-Platformer)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request