diff --git a/html-src/rules/oldfashioned.html b/html-src/rules/oldfashioned.html new file mode 100644 index 00000000..8b05a0ac --- /dev/null +++ b/html-src/rules/oldfashioned.html @@ -0,0 +1,12 @@ +

Old Fashioned

+

+Numerica type. 1 deck. No redeal. + +

Quick Description

+

+Just like Auld Lang Syne, +but with six tableau piles. + +

Notes

+

+Autodrop is disabled for this game. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index ef8ea07b..99843dab 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -546,7 +546,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, 866))) + ('dev', tuple(range(855, 867))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/auldlangsyne.py b/pysollib/games/auldlangsyne.py index 75790cfd..3d5b3ee2 100644 --- a/pysollib/games/auldlangsyne.py +++ b/pysollib/games/auldlangsyne.py @@ -52,15 +52,16 @@ class TamOShanter(Game): Foundation_Class = RK_FoundationStack RowStack_Class = StackWrapper(BasicRowStack, max_move=1, max_accept=0) - def createGame(self, rows=4, texts=False, yoffset=None): + def createGame(self, rows=4, playcards=12, texts=False, yoffset=None): # create layout l, s = Layout(self), self.s # set window if yoffset is None: yoffset = l.YOFFSET - max_rows = max(rows, 4*self.gameinfo.decks) - self.setSize(l.XM+(2+max_rows)*l.XS, l.YM+2*l.YS+12*yoffset) + max_rows = max(rows, 4 * self.gameinfo.decks) + self.setSize(l.XM + (2 + max_rows) * l.XS, + l.YM + 2 * l.YS + playcards * yoffset) # create stacks if texts: @@ -99,6 +100,7 @@ class TamOShanter(Game): # ************************************************************************ # * Auld Lang Syne +# * Old Fashioned # ************************************************************************ class AuldLangSyne(TamOShanter): @@ -111,6 +113,12 @@ class AuldLangSyne(TamOShanter): self.s.talon.dealRow(rows=self.s.foundations, frames=0) self._startAndDealRow() + +class OldFashioned(AuldLangSyne): + def createGame(self): + TamOShanter.createGame(self, rows=6, playcards=8) + + # ************************************************************************ # * Strategy # * Strategy + @@ -678,3 +686,5 @@ registerGame(GameInfo(702, DoubleLine, "Double Line", GI.GT_NUMERICA, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(853, Grandfather, "Grandfather", GI.GT_NUMERICA, 2, 1, GI.SL_BALANCED)) +registerGame(GameInfo(866, OldFashioned, "Old Fashioned", + GI.GT_NUMERICA, 1, 0, GI.SL_LUCK))