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

Some minor cleanup/final prep.

This commit is contained in:
Joe R 2024-03-31 11:43:00 -04:00
parent a7f3741eb3
commit eeea22da7f
3 changed files with 15 additions and 2 deletions

View file

@ -145,6 +145,14 @@ of 104 cards.</p>
or picture cards.</p> or picture cards.</p>
</dd> </dd>
<dt><b>FOOL</b></dt>
<dd>
<p>A special TRUMPS suit card in a TAROCK DECK. Depending on the
game, it can act as the highest trump, the lowest, or like the JOKER
in a STANDARD DECK. Also called the SKIZ.</p>
</dd>
<dt><b>FOUNDATION</b></dt> <dt><b>FOUNDATION</b></dt>
<dd> <dd>
@ -270,6 +278,11 @@ tableau. Often, only a limited number of redeals are allowed.</p>
Usually cannot be built on.</p> Usually cannot be built on.</p>
</dd> </dd>
<dt><b>SKIZ</b></dt>
<dd>
<p>See FOOL.</p>
<dt><b>SLOT</b></dt> <dt><b>SLOT</b></dt>
<dd> <dd>

View file

@ -5,7 +5,7 @@ Tarock type. 1 deck. 4 redeals.
<h3>Object</h3> <h3>Object</h3>
<p> <p>
Group all the cards in sets of 13 cards in ascending sequence Group all the cards in sets of 13 cards in ascending sequence
by suit from Two to King, plus one of 21 with the trump of 2 to the by suit from Two to King, plus one of 22 with the trump of 2 to the
Fool/Skiz. Fool/Skiz.
<h3>Rules</h3> <h3>Rules</h3>

View file

@ -436,7 +436,7 @@ class BinaryStar(BlackHole):
RowStack_Class = StackWrapper( RowStack_Class = StackWrapper(
ReserveStack, max_accept=0, max_cards=6) ReserveStack, max_accept=0, max_cards=6)
# TODO: Solver support # TODO: Solver support
Solver_Class = None # BlackHoleSolverWrapper(preset='binary_star') Solver_Class = BlackHoleSolverWrapper(preset='binary_star')
FOUNDATIONS = 2 FOUNDATIONS = 2
def _shuffleHook(self, cards): def _shuffleHook(self, cards):