From a961bca6ff7dd2059ecbe48edceb10930eb776a4 Mon Sep 17 00:00:00 2001 From: Joe R Date: Tue, 19 Dec 2023 22:06:41 -0500 Subject: [PATCH] Added Thirty-Nine Steps game. --- html-src/rules/thirtyninesteps.html | 12 ++++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/fortythieves.py | 7 +++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 html-src/rules/thirtyninesteps.html diff --git a/html-src/rules/thirtyninesteps.html b/html-src/rules/thirtyninesteps.html new file mode 100644 index 00000000..78201357 --- /dev/null +++ b/html-src/rules/thirtyninesteps.html @@ -0,0 +1,12 @@ +

Thirty-Nine Steps

+

+Forty Thieves type. 2 decks. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like Forty Thieves, +but with 13 piles of 3 cards each. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index be7a4452..7688092e 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -592,7 +592,7 @@ class GI: ('fc-2.20', tuple(range(855, 897))), ('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) + tuple(range(13160, 13163)) + (16682,)), - ('dev', tuple(range(906, 940)) + tuple(range(11017, 11020)) + + ('dev', tuple(range(906, 941)) + tuple(range(11017, 11020)) + tuple(range(5600, 5624)) + tuple(range(18000, 18005)) + tuple(range(22303, 22311)) + tuple(range(22353, 22361))), ) diff --git a/pysollib/games/fortythieves.py b/pysollib/games/fortythieves.py index 51300ca1..21913d44 100644 --- a/pysollib/games/fortythieves.py +++ b/pysollib/games/fortythieves.py @@ -156,6 +156,7 @@ class FortyThieves(Game): # * Courtyard # * Waning Moon # * Lucas +# * Thirty-Nine Steps # * Napoleon's Square # * Napoleon's Shoulder # * Carre Napoleon @@ -195,6 +196,10 @@ class Lucas(WaningMoon): ROW_MAX_MOVE = UNLIMITED_MOVES +class ThirtyNineSteps(WaningMoon): + DEAL = (0, 3) + + class NapoleonsSquare(FortyThieves): ROW_MAX_MOVE = UNLIMITED_MOVES @@ -1588,3 +1593,5 @@ registerGame(GameInfo(910, NapoleonsShoulder, "Napoleon's Shoulder", GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(933, Cascade, "Cascade", GI.GT_FORTY_THIEVES, 1, 0, GI.SL_BALANCED)) +registerGame(GameInfo(940, ThirtyNineSteps, "Thirty-Nine Steps", + GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL))