diff --git a/html-src/rules/juvenile.html b/html-src/rules/juvenile.html new file mode 100644 index 00000000..36293822 --- /dev/null +++ b/html-src/rules/juvenile.html @@ -0,0 +1,17 @@ +

Juvenile

+

+Pairing game type. 2 decks. No redeal. + +

Object

+

+Discard all pairs of cards that add up to fourteen in rank. + +

Quick Description

+

+Like Double Fourteen, +but with a different layout consisting of one pile of eight +cards, and sixteen piles of six cards. + +

Notes

+

+Autodrop is disabled for this game. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index ada0c363..bd969fc2 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -592,7 +592,7 @@ class GI: ('fc-2.20', tuple(range(855, 897))), ('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) + tuple(range(13160, 13163)) + (16682,)), - ('dev', tuple(range(906, 935)) + tuple(range(11017, 11020)) + + ('dev', tuple(range(906, 936)) + tuple(range(11017, 11020)) + tuple(range(5600, 5624)) + tuple(range(18000, 18004)) + tuple(range(22303, 22311)) + tuple(range(22353, 22361))), ) diff --git a/pysollib/games/montecarlo.py b/pysollib/games/montecarlo.py index b8f1de59..e9eb2cbb 100644 --- a/pysollib/games/montecarlo.py +++ b/pysollib/games/montecarlo.py @@ -506,6 +506,7 @@ class Neighbour(MonteCarlo): # ************************************************************************ # * Fourteen # * Double Fourteen +# * Juvenile # ************************************************************************ class Fourteen_RowStack(MonteCarlo_RowStack): @@ -576,6 +577,17 @@ class DoubleFourteen(Fourteen): self.s.talon.dealRow(rows=self.s.rows[:14]) +class Juvenile(DoubleFourteen): + + def startGame(self): + self.startDealSample() + for i in range(2): + self.s.talon.dealRow(rows=[self.s.rows[0]], frames=0) + for i in range(5): + self.s.talon.dealRow(rows=self.s.rows[:17], frames=0) + self.s.talon.dealRow(rows=self.s.rows[:17]) + + # ************************************************************************ # * Nestor # * Double Nestor @@ -1165,3 +1177,6 @@ registerGame(GameInfo(898, AcesSquare, "Aces Square", GI.GT_1DECK_TYPE, 1, 0, GI.SL_BALANCED)) registerGame(GameInfo(923, Crispy, "Crispy", GI.GT_1DECK_TYPE, 1, 0, GI.SL_BALANCED)) +registerGame(GameInfo(935, Juvenile, "Juvenile", + GI.GT_PAIRING_TYPE | GI.GT_OPEN, 2, 0, + GI.SL_MOSTLY_LUCK))