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

Added Ceiling Fan game.

This commit is contained in:
Joe R 2022-12-01 18:37:43 -05:00
parent 525df63f35
commit 5ec791c572
4 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<h1>Ceiling Fan</h1>
<p>
Fan game type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="fan.html">Fan</a>,
but piles are built down by alternate color.

View file

@ -8,9 +8,15 @@ Move all cards to the foundations.
<h3>Rules</h3> <h3>Rules</h3>
<p> <p>
Cards are dealt to 18 piles - 17 with three cards
and the last one with one.
<p>
The 18 piles build down by suit. The 18 piles build down by suit.
Only one card can be moved at a time, and Only one card can be moved at a time, and
empty piles can be filled with a King only. empty piles can be filled with a King only.
<p>
The foundations are built up by same suit. The
game is won if all cards are moved to the foundations.
<h3>Strategy</h3> <h3>Strategy</h3>
<p> <p>

View file

@ -548,7 +548,7 @@ class GI:
tuple(range(22217, 22219))), tuple(range(22217, 22219))),
('fc-2.14', tuple(range(811, 827))), ('fc-2.14', tuple(range(811, 827))),
('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))), ('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))),
('dev', tuple(range(855, 871))) ('dev', tuple(range(855, 872)))
) )
# deprecated - the correct way is to or a GI.GT_XXX flag # deprecated - the correct way is to or a GI.GT_XXX flag

View file

@ -138,6 +138,10 @@ class FanGame(Fan):
Solver_Class = FreeCellSolverWrapper(preset='fan') Solver_Class = FreeCellSolverWrapper(preset='fan')
class CeilingFan(Fan):
RowStack_Class = KingAC_RowStack
# ************************************************************************ # ************************************************************************
# * Scotch Patience # * Scotch Patience
# ************************************************************************ # ************************************************************************
@ -1097,3 +1101,5 @@ registerGame(GameInfo(819, BearRiver, "Bear River",
GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(834, RainbowFan, "Rainbow Fan", registerGame(GameInfo(834, RainbowFan, "Rainbow Fan",
GI.GT_FAN_TYPE, 2, 3, GI.SL_MOSTLY_SKILL)) GI.GT_FAN_TYPE, 2, 3, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(871, CeilingFan, "Ceiling Fan",
GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))