diff --git a/html-src/rules/devilsgrip.html b/html-src/rules/devilsgrip.html index 3f22a946..1f73bc21 100644 --- a/html-src/rules/devilsgrip.html +++ b/html-src/rules/devilsgrip.html @@ -1,6 +1,6 @@
-Picture Gallery type. 2 decks. No redeal. +Picture Gallery type. 2 decks. Unlimited redeals.
@@ -32,8 +32,8 @@ from the waste or talon (this is the only way the remaining 2s, 3s, and 4s can be moved into the rows).
When there are no moves left, you can deal cards from the talon three at -a time, and move the top card to appropriate row piles. No redeal is -allowed. +a time, and move the top card to appropriate row piles. You can deal through +the deck as many times as needed.
The game is won if you're able to move all cards to the rows, and all the piles are placed correctly. diff --git a/pysollib/games/picturegallery.py b/pysollib/games/picturegallery.py index eedfeed1..50567850 100644 --- a/pysollib/games/picturegallery.py +++ b/pysollib/games/picturegallery.py @@ -685,7 +685,7 @@ class DevilsGrip(RoyalParade): StackWrapper(DevilsGrip_TableauStack, base_rank=3, max_cards=4, dir=3), ] - Talon_Class = StackWrapper(WasteTalonStack, max_rounds=1, num_deal=3) + Talon_Class = StackWrapper(WasteTalonStack, max_rounds=-1, num_deal=3) NORMAL_OFFSET = True @@ -706,14 +706,14 @@ class DevilsGrip(RoyalParade): def fillStack(self, stack): if not stack.cards and stack in self.s.tableaux: - if self.s.waste.cards: - old_state = self.enterState(self.S_FILL) - self.s.waste.moveMove(1, stack) - self.leaveState(old_state) - elif self.s.talon.cards: + if self.s.talon.cards: old_state = self.enterState(self.S_FILL) self.s.talon.moveMove(1, stack) self.leaveState(old_state) + elif self.s.waste.cards: + old_state = self.enterState(self.S_FILL) + self.s.waste.moveMove(1, stack) + self.leaveState(old_state) # register the game @@ -746,7 +746,7 @@ registerGame(GameInfo(927, BigPictureGallery, "Big Picture Gallery", registerGame(GameInfo(928, HugePictureGallery, "Huge Picture Gallery", GI.GT_PICTURE_GALLERY, 4, 0, GI.SL_BALANCED)) registerGame(GameInfo(932, DevilsGrip, "Devil's Grip", - GI.GT_PICTURE_GALLERY | GI.GT_STRIPPED, 2, 0, + GI.GT_PICTURE_GALLERY | GI.GT_STRIPPED, 2, -1, GI.SL_MOSTLY_LUCK, ranks=list(range(1, 13)) # without Aces ))