From c3ef741c3578e1c72d19d4d54fbe9e1bcf9ac500 Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Mon, 17 Mar 2025 00:21:12 +0100 Subject: [PATCH] Updated to include info about pyscript --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa36c24..db4c8d7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # Rock Paper Scissors Card Game +Play [now](https://codebymrfinchum.pyscriptapps.com/rock-paper-scissors-card-game/latest/). A little game to play the classic Rock Paper Scissors game with a twist. Instead of freely selecting between Rock, Paper, and Scissors, you get a hand of three cards, potentially with only rocks. It is a semi-random 52-card deck with an unbalanced distribution of cards, meaning some cards are less likely to occur. For example, only 5 out of 52 cards are stones, so it is very unlikely the other player has a stone. Selecting scissors gives a higher chance of winning. -This project is in its early stages. Some features are planned, but currently, it just runs in the terminal, and you can select cards. The *AI* selects a card completely at random. If there is a draw, you continue with the cards you started with. If one player wins, new cards are dealt. +At the moment, there are two versions: a Python version for local usage (terminal), `local.py`, and a PyScript version, `main.py`. +The PyScript version can actually be accessed and played [online](https://codebymrfinchum.pyscriptapps.com/rock-paper-scissors-card-game/) on my [PyScript profile](https://pyscript.com/@codebymrfinchum).