To play the Snails Game, you need to have Python installed on your computer. You'll also need to install the Arcade library if you haven't already. You can install Arcade using pip:
pip install arcade
Once you have Python and Arcade installed, you can run the game by executing the provided Python script (snails_game.py).
- The game is played on a 10x10 grid.
- There are two players: "human1" and "BOT" (Computer).
- The game starts with a menu screen. Press any key to start the game.
Player "human1"
- Uses the keyboard to control their snail.
- Use the arrow keys (up, down, left, right) to move the snail.
- The objective is to collect points and avoid obstacles.
Player "BOT"
- Controlled by the computer and tries to collect points as well.
- Snails: Player "human1" is represented by a blue snail, and "BOT" is represented by a red snail.
- Points: The snails can collect points on the grid.
- Obstacles: There are obstacles on the grid that the snails must avoid.
- Winning Conditions: The game ends when one player reaches a certain score or when it's a draw.
- Player "human1" takes turns moving their snail using the arrow keys.
- The snail collects points by moving onto them.
- The game keeps track of the score for both players.
- The computer-controlled "BOT" takes its turn intelligently to collect points.
- The game continues until one player wins or it's a draw.
- If one player accumulates a higher score than the other and reaches a certain threshold, they win the game.
- If both players reach the threshold simultaneously, the game is declared a draw.
- The game announces the winner or a draw on the game over screen.
- When the game is over, the game over screen is displayed.
- The winner (or draw) is announced on this screen.
- Click to return to the main menu and start a new game.
Have fun playing the Snails Game! Challenge your friends or compete against the computer-controlled "BOT." Collect points, avoid obstacles, and aim to win. Good luck!