8000 GitHub - linhns/pyfalldown: Python Falldown game
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

linhns/pyfalldown

Repository files navigation

pyfalldown

Release Build status codecov Commit activity License

pyfalldown is a platformer game built with pygame, inspired by the classic arcade era.

In this game, you guide a circular ball downward, navigating through platforms. Your objective is to collect triangles while avoiding squares. Be careful not to touch the top or bottom edges of the screen!

Demo

Installation

  • Using pip:

    pip install pyfalldown

    Then, run the game:

    pyfalldown

    or:

    python -m pyfalldown
  • Run without installation using uv:

    uvx pyfalldown

Rules

  • The game is over if the ball hits the top or bottom edge of the screen.
  • Collecting a triangle earns you a random score between 1 and 5 points.
  • Hitting a square deducts a random 1 to 5 points from your score.

Usage

  • Move ball using Left/Right arrow keys.
0