diff --git a/html-src/rules/yeastdough.html b/html-src/rules/yeastdough.html new file mode 100644 index 00000000..ec592337 --- /dev/null +++ b/html-src/rules/yeastdough.html @@ -0,0 +1,12 @@ +
+Gypsy type. 2 decks. No redeal. + +
+Move all cards to the foundations. + +
+Just like Gypsy, +but with all cards dealt face-up. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 6e3c0dd1..7a829b0b 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -551,7 +551,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, 890))) + ('dev', tuple(range(855, 891))) ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/gypsy.py b/pysollib/games/gypsy.py index 3eae9682..a2c0ddbc 100644 --- a/pysollib/games/gypsy.py +++ b/pysollib/games/gypsy.py @@ -79,14 +79,23 @@ class Gypsy(Game): # default l.defaultAll() - def startGame(self): + def startGame(self, flip=0): for i in range(2): - self.s.talon.dealRow(flip=0, frames=0) + self.s.talon.dealRow(flip=flip, frames=0) self._startAndDealRow() shallHighlightMatch = Game._shallHighlightMatch_AC +# ************************************************************************ +# * Yeast Dough +# ************************************************************************ + +class YeastDough(Gypsy): + def startGame(self): + Gypsy.startGame(self, flip=1) + + # ************************************************************************ # * Giant # ************************************************************************ @@ -1067,3 +1076,5 @@ registerGame(GameInfo(792, KingsSecrets, "King's Secrets", GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED)) registerGame(GameInfo(842, SwissPatience, "Swiss Patience", GI.GT_GYPSY, 1, 0, GI.SL_BALANCED)) +registerGame(GameInfo(890, YeastDough, "Yeast Dough", + GI.GT_GYPSY, 2, 0, GI.SL_MOSTLY_SKILL))