diff --git a/html-src/rules/admiralspatience.html b/html-src/rules/admiralspatience.html new file mode 100644 index 00000000..d5a82e45 --- /dev/null +++ b/html-src/rules/admiralspatience.html @@ -0,0 +1,14 @@ +
+Terrace type. 4 decks. No redeal. + +
+Move all cards to the foundations. + +
+A four deck variation of General's Patience. +
+Like Terrace, but with four decks and +11 tableau piles. ALso, the foundations build up in suit. diff --git a/html-src/rules/bigterrace.html b/html-src/rules/bigterrace.html new file mode 100644 index 00000000..f25ec1a2 --- /dev/null +++ b/html-src/rules/bigterrace.html @@ -0,0 +1,12 @@ +
+Terrace type. 4 decks. No redeal. + +
+Move all cards to the foundations. + +
+Like Terrace, but with four decks, +11 tableau piles, and 19 cards starting in the reserve. diff --git a/html-src/rules/empressofitaly.html b/html-src/rules/empressofitaly.html new file mode 100644 index 00000000..349229db --- /dev/null +++ b/html-src/rules/empressofitaly.html @@ -0,0 +1,17 @@ +
+Terrace type. 4 decks. No redeal. + +
+Move all cards to the foundations. + +
+A four deck variation of Queen of Italy. +
+Like Terrace, but with four decks, +11 tableau piles, and 19 cards starting in the reserve. ALso, +empty cards in the tableau are not automatically filled +from the waste pile or stock. Instead, any other card from the +tableau or waste can be used to fill empty piles. diff --git a/html-src/rules/generalspatience.html b/html-src/rules/generalspatience.html index fbcacef8..e6aa76fc 100644 --- a/html-src/rules/generalspatience.html +++ b/html-src/rules/generalspatience.html @@ -10,7 +10,3 @@ Move all cards to the foundations.
Like Terrace, but the foundations build up in suit. - -
-[To be written] diff --git a/html-src/rules/queenofitaly.html b/html-src/rules/queenofitaly.html new file mode 100644 index 00000000..148c00fa --- /dev/null +++ b/html-src/rules/queenofitaly.html @@ -0,0 +1,14 @@ +
+Terrace type. 2 decks. No redeal. + +
+Move all cards to the foundations. + +
+Like Terrace, +but empty cards in the tableau are not automatically filled +from the waste pile or stock. Instead, any other card from the +tableau or waste can be used to fill empty piles. diff --git a/html-src/rules/terrace.html b/html-src/rules/terrace.html index 32ffef90..2e647eb3 100644 --- a/html-src/rules/terrace.html +++ b/html-src/rules/terrace.html @@ -8,4 +8,30 @@ Move all cards to the foundations.
-[To be written] +At the start of the game, eleven cards are dealt into a reserve +pile, and four cards are dealt into the first of nine tableau piles. +One of these four cards must be played to the foundation. This card +serves as the starting rank for building the foundation for the remainder +of the game. +
+Once the first foundation card is chosen, deal five cards into the +remaining five tableau piles. Cards may be moved between tableau +piles one at a time, building down by alternating colors. Sequences +can turn the corner, so aces can be played on kings. If a tableau pile +is empty, fill the pile using the card from the top of the waste pile, +or the stock if it's empty. If both are empty, any other card from the +tableau may be moved there to fill the space. +
+Build up the foundations by alternating colors, starting with the +first chosen rank. The top card of the reserve may be played to an +appropriate foundation pile, but not the tableau. +
+Cards may be dealt one at a time from the stock, and the card from the +waste may be played to an appropriate foundation or tableau pile. No +redeal is allowed. + +
+Consider what cards are in the reserve when choosing your starting +rank and choose carefully. The right or wrong card chosen at the +very start can make or break the game. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 4be8b2d1..4f879c79 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -325,7 +325,8 @@ class GI: ("Bryan Stout", (655,)), ("Bill Taylor", (349,)), ("Thomas Warfield", (189, 264, 300, 320, 336, 337, 359, - 415, 427, 458, 495, 496, 497, 508,)), + 415, 427, 458, 495, 496, 497, 508, + 786, 787)), ) GAMES_BY_PYSOL_VERSION = ( diff --git a/pysollib/games/terrace.py b/pysollib/games/terrace.py index fae28e2b..2725f1d7 100644 --- a/pysollib/games/terrace.py +++ b/pysollib/games/terrace.py @@ -243,6 +243,34 @@ class GeneralsPatience(Terrace): INITIAL_RESERVE_CARDS = 13 +# ************************************************************************ +# * Big Terrace +# * Empress of Italy +# * Admiral's Patience +# ************************************************************************ + +class BigTerrace(Terrace): + INITIAL_RESERVE_CARDS = 19 + + def createGame(self): + Terrace.createGame(self, rows=11) + + def startGame(self): + Terrace.startGame(self, nrows=5) + + +class EmpressOfItaly(BigTerrace): + Foundation_Class = StackWrapper(Terrace_AC_Foundation, max_move=1) + + def fillStack(self, stack): + pass + + +class AdmiralsPatience(BigTerrace): + Foundation_Class = Terrace_SS_Foundation + INITIAL_RESERVE_CARDS = 13 + + # ************************************************************************ # * Blondes and Brunettes # * Falling Star @@ -467,3 +495,9 @@ registerGame(GameInfo(582, Wood, "Wood", GI.GT_TERRACE, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(637, BastilleDay, "Bastille Day", GI.GT_TERRACE, 2, 0, GI.SL_BALANCED)) +registerGame(GameInfo(785, BigTerrace, "Big Terrace", + GI.GT_TERRACE, 4, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(786, EmpressOfItaly, "Empress of Italy", + GI.GT_TERRACE, 4, 0, GI.SL_MOSTLY_SKILL)) +registerGame(GameInfo(787, AdmiralsPatience, "Admiral's Patience", + GI.GT_TERRACE, 4, 0, GI.SL_MOSTLY_SKILL))