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

Added King's Secrets game.

This commit is contained in:
Joe R 2021-05-28 23:06:08 -04:00
parent 1025b5402b
commit 84617c5083
6 changed files with 54 additions and 3 deletions

View file

@ -0,0 +1,13 @@
<h1>King's Secrets</h1>
<p>
Two-Deck game type. 2 decks. 2 redeals.
<h3>Object</h3>
<p>
Move all the cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="topsyturvyqueens.html">Topsy-Turvy Queens</a>,
but five cards are dealt in each tableau pile, and empty
tableau piles can only be filled by queens.

View file

@ -0,0 +1,25 @@
<h1>Topsy-Turvy Queens</h1>
<p>
Two-Deck game type. 2 decks. 2 redeals.
<h3>Object</h3>
<p>
Move all the cards to the foundations.
<h3>Rules</h3>
<p>
Build the tableau stacks down by the same suit, turning
the corner as needed (aces can be played on kings and vice versa).
Any card can be placed in an empty tableau stack.
<p>
Build the foundation stacks up by suit, starting with a king,
then the ace, and the remaining cards in sequence up to the
queen. There are seven cards above the first seven foundations -
these cards are locked, and may be flipped face-up and used only
once the foundation below them has been filled. Once placed in a
foundation, cards cannot be moved.
<p>
When you get stuck, you can deal cards one at a time from the stock.
You can go through the stock a total of three times.
<p>
The game is won when all eight foundations are filled.

View file

@ -873,6 +873,17 @@ class TopsyTurvyQueens(LockedCards):
shallHighlightMatch = Game._shallHighlightMatch_SSW
class KingsSecrets(LockedCards):
Foundation_Class = StackWrapper(LockedCards_Foundation,
base_rank=KING, mod=13)
RowStack_Class = StackWrapper(SS_RowStack, mod=13, base_rank=11)
def startGame(self):
LockedCards.startGame(self, rows=5)
shallHighlightMatch = Game._shallHighlightMatch_SSW
# ************************************************************************
# * Thirty
# ************************************************************************
@ -1021,3 +1032,5 @@ registerGame(GameInfo(721, Thirty, "Thirty",
ranks=(0, 6, 7, 8, 9, 10, 11, 12)))
registerGame(GameInfo(725, TopsyTurvyQueens, "Topsy-Turvy Queens",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED))
registerGame(GameInfo(792, KingsSecrets, "King's Secrets",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED))

View file

@ -105,7 +105,7 @@ class SelectGameData(SelectDialogTreeData):
select_mahjongg_game)
g.append(gg)
if g[0]:
s_by_type = SelectGameNode(None, _("French games"),
s_by_type = SelectGameNode(None, _("French Games"),
tuple(g[0]), expanded=1)
if g[1]:
s_oriental = SelectGameNode(None, _("Oriental Games"),

View file

@ -109,7 +109,7 @@ class SelectGameData(SelectDialogTreeData):
select_mahjongg_game)
g.append(gg)
if g[0]:
s_by_type = SelectGameNode(None, _("French games"),
s_by_type = SelectGameNode(None, _("French Games"),
tuple(g[0]), expanded=1)
if g[1]:
s_oriental = SelectGameNode(None, _("Oriental Games"),

View file

@ -109,7 +109,7 @@ class SelectGameData(SelectDialogTreeData):
select_mahjongg_game)
g.append(gg)
if g[0]:
s_by_type = SelectGameNode(None, _("French games"),
s_by_type = SelectGameNode(None, _("French Games"),
tuple(g[0]), expanded=1)
if g[1]:
s_oriental = SelectGameNode(None, _("Oriental Games"),