From 956bc359b6fa2328e5e463ce8291d851a03cb676 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sun, 22 Jan 2023 18:45:30 -0500 Subject: [PATCH] Added Pitt the Younger game. --- html-src/rules/pitttheyounger.html | 12 ++++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/harp.py | 14 +++++++++++++- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 html-src/rules/pitttheyounger.html diff --git a/html-src/rules/pitttheyounger.html b/html-src/rules/pitttheyounger.html new file mode 100644 index 00000000..46b45bee --- /dev/null +++ b/html-src/rules/pitttheyounger.html @@ -0,0 +1,12 @@ +

Pitt the Younger

+

+Gypsy type. 2 decks. No redeals. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like Churchill, +but with eleven cards in the "Devil's Six". diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 7f544e00..464988b8 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -549,7 +549,7 @@ class GI: tuple(range(22217, 22219))), ('fc-2.14', tuple(range(811, 827))), ('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))), - ('dev', tuple(range(855, 885))) + ('dev', tuple(range(855, 886))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/harp.py b/pysollib/games/harp.py index 50559427..e8c25d3c 100644 --- a/pysollib/games/harp.py +++ b/pysollib/games/harp.py @@ -374,6 +374,8 @@ class Churchill(Game): shallHighlightMatch = Game._shallHighlightMatch_AC + DevilCards = 6 + def createGame(self, **layout): # create layout l, s = Layout(self), self.s @@ -400,11 +402,19 @@ class Churchill(Game): for i in range(1, 5): self.s.talon.dealRow(rows=self.s.rows[i:-i], flip=0, frames=0) self.startDealSample() - for i in range(6): + for i in range(self.DevilCards): self.s.talon.dealRow(rows=[self.s.reserves[0]]) self._startAndDealRow() +# ************************************************************************ +# * Pitt the Younger +# ************************************************************************ + +class PittTheYounger(Churchill): + DevilCards = 11 + + # register the game registerGame(GameInfo(21, DoubleKlondike, "Double Klondike", GI.GT_KLONDIKE, 2, -1, GI.SL_BALANCED)) @@ -452,3 +462,5 @@ registerGame(GameInfo(822, DoubleTrigon, "Double Trigon", registerGame(GameInfo(828, Churchill, "Churchill", GI.GT_GYPSY, 2, 0, GI.SL_BALANCED, altnames=('Prime Minister'))) +registerGame(GameInfo(885, PittTheYounger, "Pitt the Younger", + GI.GT_GYPSY, 2, 0, GI.SL_BALANCED))