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: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@224 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
skomoroh 2008-03-22 22:04:26 +00:00
parent 9cae07b47c
commit 6a0a3e2021

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