From 30ec715bb0630ee3217f22920a7c6b65d60219c5 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 14 Aug 2021 12:18:46 -0400 Subject: [PATCH] Added Triple Rail game. --- html-src/rules/triplerail.html | 12 ++++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/fortythieves.py | 8 ++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 html-src/rules/triplerail.html diff --git a/html-src/rules/triplerail.html b/html-src/rules/triplerail.html new file mode 100644 index 00000000..6bdcf91b --- /dev/null +++ b/html-src/rules/triplerail.html @@ -0,0 +1,12 @@ +

Triple Rail

+

+Forty Thieves type. 3 decks. No redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Just like Double Rail, +but with three decks and 9 piles. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 00d90848..6379d34d 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -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 diff --git a/pysollib/games/fortythieves.py b/pysollib/games/fortythieves.py index f583da6c..de5d99c5 100644 --- a/pysollib/games/fortythieves.py +++ b/pysollib/games/fortythieves.py @@ -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))