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

Added Juvenile game.

This commit is contained in:
Joe R 2023-12-01 18:39:17 -05:00
parent 224d21a2d2
commit 50e7d65e31
3 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,17 @@
<h1>Juvenile</h1>
<p>
Pairing game type. 2 decks. No redeal.
<h3>Object</h3>
<p>
Discard all pairs of cards that add up to fourteen in rank.
<h3>Quick Description</h3>
<p>
Like <a href="doublefourteen.html">Double Fourteen</a>,
but with a different layout consisting of one pile of eight
cards, and sixteen piles of six cards.
<h3>Notes</h3>
<p>
<i>Autodrop</i> is disabled for this game.

View file

@ -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))),
)

View file

@ -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))