Making with Code

Unit 02 Games Arcade Project #

๐Ÿ“– You can find the offical Python Aracde documentation HERE.


[0] Planning Booklet #

This is a big project with a lot of room for customization. You will need to:

  • outline the type of game you’d like to make
  • sketch the map
  • sketch the sprites
  • plan an additional feature(s)

It is important for you to plan the game prior to coding. This will help you stay on track and enable the teachers to provide better help.

โœ๏ธ Plan your game prior to coding in your Team Booklet
๐Ÿ‘พ ๐Ÿ’ฌ A few feature ideas

  • player health
  • attacking enemies
  • multiple players
  • multiple levels
  • timed level(s)


[1] Set Up #

๐ŸŒ Github Repo: github.com/Making-with-Code/project_games_arcade

๐Ÿ’ป Enter the Poetry shell and install the requirements:
poetry shell
poetry install

This repo includes the following files:

  • A project-games-arcade repository will include all the following files + any additional files:
    • game.py
    • /assets.py
      • /map
      • /sprites
    • README.md - a brief description of your game

[2] Deliverables #

โšกโœจ

  • A project-games-arcade repository will include all the following files + any additional files:
    • game.py
    • /assets.py
      • /map
      • /sprites
    • README.md - a brief description of your game

๐Ÿ’ป Push your work to Github:

  • git status
  • git add game.py
    • you can add all of the changed files with: git add -A
  • git status
  • git commit -m "your message goes here"
    • be sure to customize this message, do not copy and paste this line
  • git push