diff --git a/html-src/rules/wadingpool.html b/html-src/rules/wadingpool.html new file mode 100644 index 00000000..143a40ad --- /dev/null +++ b/html-src/rules/wadingpool.html @@ -0,0 +1,15 @@ +

Wading Pool

+

+One-deck game type. 1 deck. No redeal. + +

Object

+

+Move all cards to the tableau, in four columns with complete sequences from +king to ace. + +

Quick Description

+

+Like Wave Motion, +but single cards can be moved between reserve piles. +Like the tableau piles, the reserve stacks are built +down by same suit. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 1a86193a..9675f101 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -548,7 +548,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, 878))) + ('dev', tuple(range(855, 879))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/wavemotion.py b/pysollib/games/wavemotion.py index c95761ce..d4fc502d 100644 --- a/pysollib/games/wavemotion.py +++ b/pysollib/games/wavemotion.py @@ -124,6 +124,7 @@ class Flourish(WaveMotion): # ************************************************************************ # * Flow +# * Wading Pool # ************************************************************************ class Flow_ReserveStack(SS_RowStack): @@ -140,6 +141,11 @@ class Flow(WaveMotion): WaveMotion.createGame(self, rows=8, reserves=8, playcards=14) +class WadingPool(Flow): + Reserve_Class = StackWrapper(Flow_ReserveStack, base_rank=ANY_RANK, + max_move=1) + + # register the game registerGame(GameInfo(314, WaveMotion, "Wave Motion", GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) @@ -148,3 +154,5 @@ registerGame(GameInfo(753, Flourish, "Flourish", GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(841, Flow, "Flow", GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(878, WadingPool, "Wading Pool", + GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))