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

Double Putt

+

+Golf type. 2 decks. No redeal. + +

Object

+

+Move all cards to the waste stack. + +

Quick Description

+

+Like Golf, +but with two decks and nine dealt columns, +and sequences do wrap around, +i.e. Twos and Kings may be placed on Aces +and Queens and Aces may be placed on Kings. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index bb3d12d9..fd5641e3 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -551,7 +551,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, 892))) + ('dev', tuple(range(855, 893))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/golf.py b/pysollib/games/golf.py index 06ee4197..c1dd55e2 100644 --- a/pysollib/games/golf.py +++ b/pysollib/games/golf.py @@ -241,6 +241,14 @@ class RelaxedGolf(Golf): shallHighlightMatch = Game._shallHighlightMatch_RKW +class DoublePutt(DoubleGolf): + Solver_Class = BlackHoleSolverWrapper(preset='golf', base_rank=0, + wrap_ranks=True) + Waste_Class = StackWrapper(Golf_Waste, mod=13) + + shallHighlightMatch = Game._shallHighlightMatch_RKW + + # ************************************************************************ # * Elevator - Relaxed Golf in a Pyramid layout # ************************************************************************ @@ -1476,3 +1484,5 @@ registerGame(GameInfo(880, Carcassonne, "Carcassonne", GI.GT_NAPOLEON | GI.GT_OPEN, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(891, AllInARowII, "All in a Row II", GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(892, DoublePutt, "Double Putt", + GI.GT_GOLF, 2, 0, GI.SL_BALANCED))