CatAttack is a game that looks like chess but is easier to play for children. Each team starts with a monkey, a cat, a dog and a sheep.
The monkey can move at an angle to the game board
The cat can move in all directions
The Dog can move up, down, left and right.
The sheep can only move foward.
The game is won by taking out the other players cat.
2.1 Install latest Python from https://www.python.org/downloads/
2.2 Install Pycharm from https://www.jetbrains.com/pycharm/
2.3 Install latest Git form https://www.jetbrains.com/pycharm/
2.4 Checkout project
Open Pycharm and select Checkout from Git.
The URL for the Git project is
https://github.com/ditlef9/CatAttack.git
2.5 In Pycharm click Settings
and select
Project
→
Python Interpreter
→
Arrow down
→ Show all
On Python Interpreters click +
→
Then click OK
.
2.6 In Pycharm click Add Configuration
and select
Add New
→
Python
→
Script path = C:\Users\{Your username}\PycharmProjects\CatAttack\Main.py
2.7 Install dependencies by clicking in Pycharm on Terminal and writing:
C:\Users\{Your username}}\PycharmProjects\CatAttack\venv\Scripts\python.exe -m pip install --upgrade pip
pip install pygame
2.8 Select Run Main
(Shift+F10).