mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added Dnieper game.
This commit is contained in:
parent
3649bbb661
commit
187bae25cb
3 changed files with 22 additions and 1 deletions
13
html-src/rules/dnieper.html
Normal file
13
html-src/rules/dnieper.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<h1>Dnieper</h1>
|
||||
<p>
|
||||
Spider type. 1 deck. No redeal.
|
||||
|
||||
<h3>Object</h3>
|
||||
<p>
|
||||
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.
|
||||
|
||||
<h3>Quick Description</h3>
|
||||
<p>
|
||||
Like <a href="kiev.html">Kiev</a>, but sequences in the tableau
|
||||
can turn the corner, so kings can be played on aces.
|
|
@ -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))),
|
||||
)
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue