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

Baker's Dozen with two decks.

This commit is contained in:
Joe R 2022-11-07 20:06:28 -05:00
parent fa22e6afc5
commit 2f464fe54b
3 changed files with 22 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<h1>Baker's Dozen (2 Decks)</h1>
<p>
Baker's Dozen type. 2 decks. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="bakersdozen.html">Baker's Dozen</a>,
but with two decks and 26 playing piles.

View file

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

View file

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