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

Added a bunch more new game rules.

This commit is contained in:
Joe R 2021-07-20 23:42:07 -04:00
parent 50ee8c9158
commit d60cf672e3
10 changed files with 157 additions and 2 deletions

19
html-src/rules/aglet.html Normal file
View file

@ -0,0 +1,19 @@
<h1>Aglet</h1>
<p>
One deck type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all the cards to the foundations.
<h3>Rules</h3>
<p>
Cards are dealt to eight piles of six cards. The four
aces are dealt to the foundations. No building on the
tableau is allowed, cards can only be moved to the
foundations or a single reserve stack. The top card of
the reserve can be moved to the foundations.
<p>
The foundation piles are built up by rank, regardless of
suit. The game is won if all cards are moved to the
reserve.

View file

@ -0,0 +1,14 @@
<h1>Apophis</h1>
<p>
Pairing game type. 1 deck. 2 redeals.
<h3>Object</h3>
<p>
Fill all of the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="pyramid.html">Pyramid</a>,
but with three waste piles. When drawing
cards from the stock, one is dealt to all three
waste piles.

View file

@ -0,0 +1,18 @@
<h1>Can Can</h1>
<p>
Raglan type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Rules</h3>
<p>
Cards are dealt into 13 tableau piles, 10 of 4 and 3 of 3.
The last three cards are dealt to reserves, and can be
freely moved to the tableau or foundations. Tableau piles
are built down by alternating colors. Empty tableau piles
can only be filled by kings.
<p>
Foundations are built up by suit. The game is won when all cards
are moved to the foundation.

View file

@ -0,0 +1,14 @@
<h1>Flourish</h1>
<p>
One-deck game type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the tableau, in four columns with complete sequences from
king to ace.
<h3>Quick Description</h3>
<p>
Like <a href="wavemotion.html">Wave Motion</a>,
but the tableau piles are built down by alternate
color.

View file

@ -0,0 +1,23 @@
<h1>Fortune's Favor</h1>
<p>
Forty Thieves type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Rules</h3>
<p>
Twelve cards are dealt into twelve tableau piles. These
piles are built down by suit. Only one card can be moved
at a time. Cards can be dealt from the stock one at a time
and moved to the foundations or the tableau. No redeals are
allowed.
<p>
The foundations are built up by suit. The game is won when
all cards are moved to the foundations.
<h3>Notes</h3>
<p>
Fortune's Favor is named because the odds of winning are strongly
in the player's favor. It is a variation on the game
<a href="busyaces.html">Busy Aces</a>.

View file

@ -0,0 +1,17 @@
<h1>Indefatigable</h1>
<p>
Baker's Dozen type. 1 deck. 2 redeals.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Rules</h3>
<p>
Twelve piles of four cards are dealt, and the aces are
dealt to the foundations. Tableau piles are built up or
down by suit and foundations are built up by suit. Any
card can be used to fill empty piles.
<p>
Two redeals are allowed. The game is won when all cards
are moved to the foundations.

View file

@ -0,0 +1,18 @@
<h1>Right and Left</h1>
<p>
Pairing game type. 2 decks. Unlimited redeals.
<h3>Object</h3>
<p>
Move all the cards to the foundations.
<h3>Rules</h3>
<p>
Deal cards from the stock two at a time. Pairs of
cards of the same rank can be moved to the foundation.
Once the stock is empty, the two piles are flipped over
and create a new stock.
<p>
The game is won once all cards are moved to the foundations.
Unlimited redeals are allowed, so all games should turn
out eventually.

View file

@ -0,0 +1,16 @@
<h1>The Wish</h1>
<p>
Pairing game type. 1 stripped deck. No redeal.
<h3>Object</h3>
<p>
Discard all pairs of cards of the same rank.
<h3>Rules</h3>
<p>
The game is played with only the cards ranked from
seven through king, and aces. Cards are dealt into
eight piles of four cards. Exposed cards of the same
rank in the tableau can be removed.
<p>
You win when the tableau piles are all gone.

16
html-src/rules/vague.html Normal file
View file

@ -0,0 +1,16 @@
<h1>Vague</h1>
<p>
One-deck game type. 1 deck. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Rules</h3>
<p>
18 cards are dealt into 18 tableau piles. Cards may be
moved to one of four foundations, one for each suit. The
foundations are built up by suit.
<p>
Empty tableau piles are filled from the stock. The game is
won if all cards are moved to the foundations.

View file

@ -964,8 +964,8 @@ registerGame(GameInfo(328, TheWish, "The Wish",
ranks=(0, 6, 7, 8, 9, 10, 11, 12)))
registerGame(GameInfo(329, TheWishOpen, "The Wish (open)",
GI.GT_PAIRING_TYPE | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0,
GI.SL_MOSTLY_SKILL,
ranks=(0, 6, 7, 8, 9, 10, 11, 12)))
GI.SL_MOSTLY_SKILL, ranks=(0, 6, 7, 8, 9, 10, 11, 12),
rules_filename="thewish.html"))
registerGame(GameInfo(368, Vertical, "Vertical",
GI.GT_PAIRING_TYPE | GI.GT_OPEN, 1, 0,
GI.SL_MOSTLY_LUCK))