mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Implement Freecell with Two Reserves.
This commit implements Freecell with two reserves. It was written for Shlomi Fish’s convenience.
This commit is contained in:
parent
3505a28bfe
commit
346e6a91c1
1 changed files with 5 additions and 1 deletions
|
@ -641,13 +641,17 @@ class Limpopo(Game):
|
|||
|
||||
shallHighlightMatch = Game._shallHighlightMatch_AC
|
||||
|
||||
|
||||
class PairFcFreeCell(FreeCell):
|
||||
def createGame(self):
|
||||
FreeCell.createGame(self, reserves=2)
|
||||
|
||||
# register the game
|
||||
registerGame(GameInfo(5, RelaxedFreeCell, "Relaxed FreeCell",
|
||||
GI.GT_FREECELL | GI.GT_RELAXED | GI.GT_OPEN, 1, 0, GI.SL_SKILL))
|
||||
registerGame(GameInfo(8, FreeCell, "FreeCell",
|
||||
GI.GT_FREECELL | GI.GT_OPEN, 1, 0, GI.SL_SKILL))
|
||||
registerGame(GameInfo(1900, PairFcFreeCell, "FreeCell with Two Reserves",
|
||||
GI.GT_FREECELL | GI.GT_OPEN, 1, 0, GI.SL_SKILL))
|
||||
registerGame(GameInfo(46, ForeCell, "ForeCell",
|
||||
GI.GT_FREECELL | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
|
||||
registerGame(GameInfo(77, Stalactites, "Stalactites",
|
||||
|
|
Loading…
Add table
Reference in a new issue