diff --git a/html-src/rules/bluejacket.html b/html-src/rules/bluejacket.html new file mode 100644 index 00000000..7a7cd446 --- /dev/null +++ b/html-src/rules/bluejacket.html @@ -0,0 +1,12 @@ +

Blue Jacket

+

+Picture Gallery type. 2 decks. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like Virginia Reel, +but any card can fill an empty space in the bottom row. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index f78de4ac..8ad0a29a 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -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))), ) diff --git a/pysollib/games/picturegallery.py b/pysollib/games/picturegallery.py index 2c9e0e79..7457255d 100644 --- a/pysollib/games/picturegallery.py +++ b/pysollib/games/picturegallery.py @@ -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))