diff --git a/html-src/rules/brigade.html b/html-src/rules/brigade.html new file mode 100644 index 00000000..7f2e0ec4 --- /dev/null +++ b/html-src/rules/brigade.html @@ -0,0 +1,13 @@ +
+Raglan type. 1 deck. No redeal. + +
+Move all cards to the foundations. + +
+Like Raglan, but with a tableau +consisting of seven piles of five cards each, and 13 cards +in the reserves. diff --git a/html-src/rules/relaxedraglan.html b/html-src/rules/relaxedraglan.html new file mode 100644 index 00000000..e27514b1 --- /dev/null +++ b/html-src/rules/relaxedraglan.html @@ -0,0 +1,12 @@ +
+Raglan type. 1 deck. No redeal. + +
+Move all cards to the foundations. + +
+Like Raglan, but sequences of +cards in the tableau can be moved together. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 1ae7ac87..afb8cd96 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -527,7 +527,7 @@ class GI: ('fc-2.12', tuple(range(774, 811)) + (16681,) + tuple(range(22217, 22219))), ('fc-2.14', tuple(range(811, 827))), - ('fc-2.16', tuple(range(827, 849)) + tuple(range(22400, 22407))) + ('fc-2.16', tuple(range(827, 850)) + tuple(range(22400, 22407))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/klondike.py b/pysollib/games/klondike.py index 836fdb28..0da0f30f 100644 --- a/pysollib/games/klondike.py +++ b/pysollib/games/klondike.py @@ -560,6 +560,7 @@ class FlowerGarden(Stonewall): # * King Albert # * Raglan # * Brigade +# * Relaxed Raglan # * Queen Victoria # ************************************************************************ @@ -621,6 +622,10 @@ class Brigade(Raglan): shallHighlightMatch = Game._shallHighlightMatch_RK +class RelaxedRaglan(Raglan): + RowStack_Class = AC_RowStack + + class QueenVictoria(KingAlbert): RowStack_Class = AC_RowStack @@ -1539,3 +1544,6 @@ registerGame(GameInfo(726, EightSages, "Eight Sages", GI.GT_KLONDIKE, 2, 1, GI.SL_MOSTLY_LUCK)) registerGame(GameInfo(821, Trigon, "Trigon", GI.GT_KLONDIKE, 1, -1, GI.SL_BALANCED)) +registerGame(GameInfo(849, RelaxedRaglan, "Relaxed Raglan", + GI.GT_RAGLAN | GI.GT_RELAXED | GI.GT_OPEN, 1, 0, + GI.SL_MOSTLY_SKILL))