Sunday, July 25, 2021

Cool

Gravity ball

Gameplay Summary:

Physics ball game about dropping a ball from a fixed height onto different shapes.

Gravity will allow balls to be dropped from a height at a fixed speed.

Different shapes will spawn in at random intervals. The longer the game goes on, the more shapes will appear and the more health they will have.

Each shape has health. To damage them, player has to aim and drop a ball onto the shape. Each bounce = 1 damage.

Once a shape reaches 0 health, it will despawn.

For every time the ball drops to the bottom of the screen, the shapes move up by a certain distance.

If a shape reaches the top of the screen, player loses the game.

Player is able to increase their ball output by collecting balls that also spawn as powerups at random intervals.

The higher the health of the shape, the more points retrieved.

If 1000 points reached, player wins the game.

Some shapes spawn rotating at a random speed (By RNG).

Rotating shapes grant more points.

Specifications:

1 hp = 10 points.

1 rotating shape hp = 20 points.

According to screen size, possibly:
- 10 - 20 shapes maximum on the screen
- Circles
- Squares
- Rectangles
- Triangles

UI:

- Total points collected
- Health points stated on shape
- Number of balls dropped total
- x Number of balls able to drop








Cool

Gravity ball Gameplay Summary: Physics ball game about dropping a ball from a fixed height onto different shapes. Gravity will allow balls t...