Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenhendricks00/alien_invasion
Alien Invasion from "Python Crash Course- A Hands-On, Project-Based Introduction to Programming" by Eric Matthes.
https://github.com/kenhendricks00/alien_invasion
Last synced: about 2 months ago
JSON representation
Alien Invasion from "Python Crash Course- A Hands-On, Project-Based Introduction to Programming" by Eric Matthes.
- Host: GitHub
- URL: https://github.com/kenhendricks00/alien_invasion
- Owner: kenhendricks00
- Created: 2023-03-13T05:32:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-17T21:38:12.000Z (almost 2 years ago)
- Last Synced: 2023-11-07T23:13:46.693Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# π½ Alien Invasion
Alien invasion is a clone of popular arcade game with same name.
I created this game by following the "Python Crash Course" book. The reason was to improve my python skills.## π Introduction
> In Alien Invasion, the player controls a ship that appears at
the bottom center of the screen. The player can move the ship
right and left using the arrow keys and shoot bullets using the
spacebar. When the game begins, a fleet of aliens fills the sky
and moves across and down the screen. The player shoots and
destroys the aliens. If the player shoots all the aliens, a new fleet
appears that moves faster than the previous fleet. If any alien hits
the playerβs ship or reaches the bottom of the screen, the player
loses a ship. If the player loses three ships, the game ends.## π§ Requirements
- [Python](https://www.python.org/) 3.x +
- [Pygame](https://www.pygame.org/)## :video_game: Controls
- Space-bar
- Shoot- Arrows keys (left - right)
- Move the ship left / right## β Let's play
### Cloning the Repository
```
$ git clone https://github.com/kenhendricks00/alien_invasion.git$ cd alien_invasion
```### Running
```
$ python alien_invasion.py
```Enjoy!