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

+ 1 new game

git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@224 39dd0a4e-7c14-0410-91b3-c4f2d318f732
This commit is contained in:
skomoroh 2008-03-22 22:04:26 +00:00
parent b27a27c990
commit 93ef6b8970

View file

@ -1226,6 +1226,18 @@ class BlindPatience(FortyThieves):
shallHighlightMatch = Game._shallHighlightMatch_AC
# /***********************************************************************
# // Foothold
# ************************************************************************/
class Foothold(FortyThieves):
RowStack_Class = UD_AC_RowStack
DEAL = (0, 5)
def createGame(self):
FortyThieves.createGame(self, rows=8)
shallHighlightMatch = Game._shallHighlightMatch_AC
# register the game
registerGame(GameInfo(13, FortyThieves, "Forty Thieves",
@ -1345,4 +1357,6 @@ registerGame(GameInfo(683, FamousFifty, "Famous Fifty",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(751, BlindPatience, "Blind Patience",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(765, Foothold, "Foothold",
GI.GT_FORTY_THIEVES | GI.GT_ORIGINAL, 2, 0, GI.SL_MOSTLY_SKILL))