diff --git a/html-src/rules/dnieper.html b/html-src/rules/dnieper.html new file mode 100644 index 00000000..be16ec15 --- /dev/null +++ b/html-src/rules/dnieper.html @@ -0,0 +1,13 @@ +
+Spider type. 1 deck. No redeal. + +
+Group all the cards in sets of 13 cards in descending sequence +by suit from King to Ace and move such sets to the foundations. + +
+Like Kiev, but sequences in the tableau +can turn the corner, so kings can be played on aces. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index c66f1452..7692b3d3 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -575,7 +575,7 @@ class GI: ('fc-2.20', tuple(range(855, 897))), ('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) + tuple(range(13160, 13163)) + (16682,)), - ('dev', tuple(range(906, 919)) + tuple(range(11017, 11020)) + + ('dev', tuple(range(906, 920)) + tuple(range(11017, 11020)) + tuple(range(22303, 22311)) + tuple(range(22353, 22361))), ) diff --git a/pysollib/games/yukon.py b/pysollib/games/yukon.py index aef1ce0a..b01cdbed 100644 --- a/pysollib/games/yukon.py +++ b/pysollib/games/yukon.py @@ -553,6 +553,7 @@ class Queensland(Yukon): # * Russian Spider # * Double Russian Spider # * Kiev +# * Dnieper # ************************************************************************ class RussianSpider_RowStack(Yukon_SS_RowStack): # Spider_SS_RowStack @@ -582,6 +583,7 @@ class DoubleRussianSpider(RussianSpider, DoubleRussianSolitaire): class Kiev(RussianSpider): + RowStack_Class = RussianSpider_RowStack Layout_Method = staticmethod(Layout.klondikeLayout) Talon_Class = DealRowTalonStack @@ -594,6 +596,10 @@ class Kiev(RussianSpider): self._startAndDealRow() +class Dnieper(Kiev): + RowStack_Class = StackWrapper(RussianSpider_RowStack, mod=13) + + # ************************************************************************ # * Brisbane # ************************************************************************ @@ -829,3 +835,5 @@ registerGame(GameInfo(897, Kiev, "Kiev", altnames=('Kyiv',))) registerGame(GameInfo(914, Canberra, "Canberra", GI.GT_YUKON, 1, 1, GI.SL_BALANCED)) +registerGame(GameInfo(919, Dnieper, "Dnieper", + GI.GT_SPIDER, 1, 0, GI.SL_BALANCED))