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

Compare commits

...

3 commits

Author SHA1 Message Date
Joe R
66995aedaf Fix inconsistent numbers in Memory rules (#394) 2024-10-07 19:02:29 -04:00
Joe R
fbc0817a1e Fix grammar of more game rules 2024-10-05 11:08:46 -04:00
Joe R
dfd3b063dd Disable autodrop for Samegame (#386) 2024-10-05 10:01:49 -04:00
7 changed files with 14 additions and 6 deletions

View file

@ -21,7 +21,7 @@ two other tiles, one must match by color and another by symbol. If it
is played next to four other tiles, it must match two by color and two
by symbol.
<p>
The game is played if all tiles from the talon can be played to the
The game is won if all tiles from the talon can be played to the
playing area.
<h3>History</h3>

View file

@ -4,7 +4,7 @@ Memory game type. 16 cards. No redeal.
<h3>Object</h3>
<p>
Flip all pairs of matching cards and get a score of 40 points or more.
Flip all pairs of matching cards and get a score of 30 points or more.
<h3>Rules</h3>
<p>

View file

@ -4,7 +4,7 @@ Memory game type. 52 cards. No redeal.
<h3>Object</h3>
<p>
Flip all pairs of matching cards and get a score of 40 points or more.
Flip all pairs of matching cards and get a score of 50 points or more.
<h3>Rules</h3>
<p>

View file

@ -9,6 +9,7 @@ Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="fortythieves.html">Forty Thieves</a>,
but with a varying base card,
the foundations and the 12 piles wrap around,
but with a varying base card - after dealing, the next card
is dealt to the foundation to determine the base rank.
Also, the foundations and the 12 piles wrap around,
and empty piles are automatically filled from the waste or talon.

View file

@ -15,3 +15,7 @@ fill in the gap. If a column is emptied, the adjacent columns will
slide to the left to fill in the gap.
<p>
The game is won if you manage to clear all of the tiles.
<h3>Notes</h3>
<p>
<i>Autodrop</i> is disabled for this game.

View file

@ -28,4 +28,4 @@ moving it somewhere else first.
<h3>Strategy</h3>
<p>
Don't drop cards to early - you should turn off <i>Autodrop</i> for this game.
Don't drop cards too early - you should turn off <i>Autodrop</i> for this game.

View file

@ -244,6 +244,9 @@ class AbstractSamegameGame(Game):
self.s.rows[r - (numrows * emptycols)],
frames=0)
def getAutoStacks(self, event=None):
return ((), (), ())
class Samegame3_20x10(AbstractSamegameGame):
L = (20, 10)