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

Added Triple Rail game.

This commit is contained in:
Joe R 2021-08-14 12:18:46 -04:00
parent d2283a90d6
commit 30ec715bb0
3 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<h1>Triple Rail</h1>
<p>
Forty Thieves type. 3 decks. No redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Just like <a href="doublerail.html">Double Rail</a>,
but with three decks and 9 piles.

View file

@ -423,7 +423,7 @@ class GI:
('fc-2.8', (343001,)),
('fc-2.12', tuple(range(774, 811)) + (16681,) +
tuple(range(22217, 22219))),
('fc-2.14', tuple(range(811, 818)))
('fc-2.14', tuple(range(811, 819)))
)
# deprecated - the correct way is to or a GI.GT_XXX flag

View file

@ -499,6 +499,7 @@ class Mumbai(Indian):
# * Napoleon's Exile
# * Double Rail
# * Single Rail (1 deck)
# * Triple Rail (3 decks)
# * Final Battle
# * rows build down by rank
# ************************************************************************
@ -524,6 +525,11 @@ class SingleRail(DoubleRail):
FortyThieves.createGame(self, rows=4, XCARDS=48)
class TripleRail(DoubleRail):
def createGame(self):
FortyThieves.createGame(self, rows=9, XCARDS=147)
class FinalBattle(DoubleRail):
def createGame(self):
FortyThieves.createGame(self, rows=6)
@ -1412,3 +1418,5 @@ registerGame(GameInfo(776, EightyThieves, "Eighty Thieves",
GI.GT_FORTY_THIEVES, 4, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(815, Following, "Following",
GI.GT_FORTY_THIEVES, 1, 1, GI.SL_BALANCED))
registerGame(GameInfo(818, TripleRail, "Triple Rail",
GI.GT_FORTY_THIEVES, 3, 0, GI.SL_BALANCED))