A Simple chess based game.
Python and PyQt5
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3
sudo apt-get install python-pyqt5
sudo pacman -S python python-pyqt5
Simply run main.py using python3 interpreter
Each player has 8 pawns, 1 rook and 1 bishop. The objective of players is to promote their pawns. In this game when a pawn is promoted, it increases the score of the player by 1and is removed from the chess board. The game ends when both of the players have zero pawns left, or either of the player is unable to make a move. The player with highest score wins.