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

Ladybug is probably more of a variable redeals game.

This commit is contained in:
Joe R 2022-11-17 17:13:16 -05:00
parent f31d14c7f6
commit 9493f79f9c
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
<h1>Ladybug</h1>
<p>
One deck type. 1 deck. Unlimited redeals.
One deck type. 1 deck. Varying number of redeals.
<h3>Object</h3>
<p>

View file

@ -1102,7 +1102,7 @@ class Ladybug(Game):
x = x + l.XS
self.setRegion(s.rows, (x0-l.XS//2, y-l.CH//2, 999999, 999999))
x, y = l.XM, l.YM
s.talon = Ladybug_Talon(x, y, self, max_rounds=-1, num_deal=3)
s.talon = Ladybug_Talon(x, y, self, max_rounds=-2, num_deal=3)
l.createText(s.talon, 'ne')
y = y + l.YS
s.waste = Ladybug_Waste(x, y, self)
@ -1239,4 +1239,4 @@ registerGame(GameInfo(760, Aglet, "Aglet",
GI.GT_1DECK_TYPE | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0,
GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(836, Ladybug, "Ladybug",
GI.GT_1DECK_TYPE, 1, -1, GI.SL_BALANCED))
GI.GT_1DECK_TYPE, 1, -2, GI.SL_BALANCED))