1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Added Thirty-Nine Steps game.

This commit is contained in:
Joe R 2023-12-19 22:06:41 -05:00
parent f190b3d30e
commit a961bca6ff
3 changed files with 20 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<h1>Thirty-Nine Steps</h1>
<p>
Forty Thieves type. 2 decks. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="fortythieves.html">Forty Thieves</a>,
but with 13 piles of 3 cards each.

View file

@ -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))),
)

View file

@ -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))