diff --git a/html-src/rules/cruel.html b/html-src/rules/cruel.html index 63b71022..f67a7b16 100644 --- a/html-src/rules/cruel.html +++ b/html-src/rules/cruel.html @@ -8,8 +8,15 @@ Move all cards to the foundations.
-The piles build down by suit. -Only one card can be moved at a time, and empty spaces cannot be filled. +Twelve tableau piles of four cards are dealt and the aces are moved to the +foundations at the start of the game. +
+The tableau piles build down by suit, and the foundations build up by +suit. Only one card can be moved at a time, and empty spaces cannot be +filled.
When no more moves are possible click on the talon for a redeal. -The cards are not re-shuffled, but re-dealt in packs of 4 cards. +The cards are not re-shuffled, but re-dealt in packs of 4 cards. Note +that due to the way redealing is done, if no cards have been moved since +the last redeal, the cards will end up in the same layout as before. +This usually means the game is lost. diff --git a/html-src/rules/unusual.html b/html-src/rules/unusual.html new file mode 100644 index 00000000..e4ebb8b4 --- /dev/null +++ b/html-src/rules/unusual.html @@ -0,0 +1,12 @@ +
+Baker's Dozen type. 2 decks. Unlimited redeals. + +
+Move all cards to the foundations. + +
+Like Cruel, +but with two decks and twenty-four tableau piles. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 71f1b5d8..636cc0f9 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -423,7 +423,7 @@ class GI: ('fc-2.8', (343001,)), ('fc-2.12', tuple(range(774, 811)) + (16681,) + tuple(range(22217, 22219))), - ('fc-2.14', tuple(range(811, 823))) + ('fc-2.14', tuple(range(811, 824))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/bakersdozen.py b/pysollib/games/bakersdozen.py index 3fbee060..d3d6e147 100644 --- a/pysollib/games/bakersdozen.py +++ b/pysollib/games/bakersdozen.py @@ -196,6 +196,7 @@ class GoodMeasure(BakersDozen): # ************************************************************************ # * Cruel +# * Unusual # ************************************************************************ class Cruel_Talon(TalonStack): @@ -268,6 +269,12 @@ class Cruel(CastlesInSpain): shallHighlightMatch = Game._shallHighlightMatch_SS +class Unusual(Cruel): + + def createGame(self): + return CastlesInSpain.createGame(self, rows=24) + + # ************************************************************************ # * Royal Family # * Indefatigable @@ -393,3 +400,5 @@ registerGame(GameInfo(515, Indefatigable, "Indefatigable", registerGame(GameInfo(664, SpanishPatienceII, "Spanish Patience II", GI.GT_BAKERS_DOZEN | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(823, Unusual, "Unusual", + GI.GT_BAKERS_DOZEN | GI.GT_OPEN, 2, -1, GI.SL_BALANCED))