1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Add Russian Cell game

This commit is contained in:
Joe R 2024-06-28 22:45:47 -04:00
parent 0cace3a07b
commit 3cbcc8d214
3 changed files with 22 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<h1>Russian Cell</h1>
<p>
Yukon type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Just like <a href="russiansolitaire.html">Russian Solitaire</a>,
but with two free cells.

View file

@ -604,7 +604,7 @@ class GI:
tuple(range(13168, 13170)) + tuple(range(18000, 18005)) + tuple(range(13168, 13170)) + tuple(range(18000, 18005)) +
tuple(range(19000, 19012)) + tuple(range(22303, 22311)) + tuple(range(19000, 19012)) + tuple(range(22303, 22311)) +
tuple(range(22353, 22361))), tuple(range(22353, 22361))),
('dev', tuple(range(961, 964))), ('dev', tuple(range(961, 965))),
) )
# deprecated - the correct way is to or a GI.GT_XXX flag # deprecated - the correct way is to or a GI.GT_XXX flag

View file

@ -774,6 +774,7 @@ class YukonKings(Yukon):
# ************************************************************************ # ************************************************************************
# * Yukon Cells # * Yukon Cells
# * Russian Cell
# * Yukonic Plague # * Yukonic Plague
# ************************************************************************ # ************************************************************************
@ -835,6 +836,12 @@ class YukonCells(Yukon):
l.defaultAll() l.defaultAll()
class RussianCell(YukonCells):
RowStack_Class = StackWrapper(Yukon_SS_RowStack, base_rank=KING)
shallHighlightMatch = Game._shallHighlightMatch_SS
class YukonicPlague(YukonCells): class YukonicPlague(YukonCells):
Reserve_Stack = OpenStack Reserve_Stack = OpenStack
@ -933,3 +940,5 @@ registerGame(GameInfo(942, QuadrupleYukon, "Quadruple Yukon",
GI.GT_YUKON, 4, 0, GI.SL_BALANCED)) GI.GT_YUKON, 4, 0, GI.SL_BALANCED))
registerGame(GameInfo(963, Sevastopol, "Sevastopol", registerGame(GameInfo(963, Sevastopol, "Sevastopol",
GI.GT_SPIDER, 1, 0, GI.SL_BALANCED)) GI.GT_SPIDER, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(964, RussianCell, "Russian Cell",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED))