diff --git a/html-src/rules/bakersdozen2decks.html b/html-src/rules/bakersdozen2decks.html new file mode 100644 index 00000000..39b17196 --- /dev/null +++ b/html-src/rules/bakersdozen2decks.html @@ -0,0 +1,12 @@ +
+Baker's Dozen type. 2 decks. No redeal. + +
+Move all cards to the foundations. + +
+Like Baker's Dozen, +but with two decks and 26 playing piles. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index cf9a3b23..92c88ae3 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -545,7 +545,7 @@ class GI: tuple(range(22217, 22219))), ('fc-2.14', tuple(range(811, 827))), ('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))), - ('dev', tuple(range(855, 860))) + ('dev', tuple(range(855, 861))) ) # 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 eb8aa811..f74e0b24 100644 --- a/pysollib/games/bakersdozen.py +++ b/pysollib/games/bakersdozen.py @@ -150,6 +150,12 @@ class BakersDozen(CastlesInSpain): shallHighlightMatch = Game._shallHighlightMatch_RK +class BakersDozen2Decks(BakersDozen): + + def createGame(self): + CastlesInSpain.createGame(self, rows=26, playcards=13) + + # ************************************************************************ # * Spanish Patience # * Portuguese Solitaire @@ -420,3 +426,6 @@ registerGame(GameInfo(664, SpanishPatienceII, "Spanish Patience II", GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(823, Unusual, "Unusual", GI.GT_BAKERS_DOZEN | GI.GT_OPEN, 2, -1, GI.SL_BALANCED)) +registerGame(GameInfo(860, BakersDozen2Decks, "Baker's Dozen (2 Decks)", + GI.GT_BAKERS_DOZEN | GI.GT_OPEN, 2, 0, + GI.SL_MOSTLY_SKILL))