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

Added Blue Jacket game.

This commit is contained in:
Joe R 2024-01-03 20:33:48 -05:00
parent d0a2b97a9e
commit f466df1644
3 changed files with 25 additions and 2 deletions

View file

@ -0,0 +1,12 @@
<h1>Blue Jacket</h1>
<p>
Picture Gallery type. 2 decks. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="virginiareel.html">Virginia Reel</a>,
but any card can fill an empty space in the bottom row.

View file

@ -593,7 +593,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, 944)) + tuple(range(11017, 11020)) +
('dev', tuple(range(906, 945)) + tuple(range(11017, 11020)) +
tuple(range(5600, 5624)) + tuple(range(18000, 18005)) +
tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
)

View file

@ -500,7 +500,6 @@ class Zeus(MountOlympus):
# * Big Parade
# ************************************************************************
class RoyalParade_TableauStack(PictureGallery_TableauStack):
def _canSwapPair(self, from_stack):
@ -566,6 +565,7 @@ class BigParade(RoyalParade):
# ************************************************************************
# * Virginia Reel
# * Three Up
# * Blue Jacket
# ************************************************************************
class VirginiaReel_Talon(DealRowTalonStack):
@ -614,6 +614,15 @@ class ThreeUp(VirginiaReel):
VirginiaReel.createGame(self, numstacks=12)
class BlueJacket_RowStack(BasicRowStack):
def acceptsCards(self, from_stack, cards):
return len(self.cards) == 0
class BlueJacket(VirginiaReel):
RowStack_Class = StackWrapper(BlueJacket_RowStack, max_accept=1)
# ************************************************************************
# * Devil's Grip
# ************************************************************************
@ -726,3 +735,5 @@ registerGame(GameInfo(932, DevilsGrip, "Devil's Grip",
GI.SL_MOSTLY_LUCK,
ranks=list(range(1, 13)) # without Aces
))
registerGame(GameInfo(944, BlueJacket, "Blue Jacket",
GI.GT_PICTURE_GALLERY, 2, 0, GI.SL_MOSTLY_SKILL))