From fc84e712b3a8cff1f65045f87491f67f7d5d156c Mon Sep 17 00:00:00 2001 From: Joe R Date: Wed, 30 Aug 2023 21:24:50 -0400 Subject: [PATCH] Added Canberra game. --- html-src/rules/canberra.html | 12 ++++++++++++ pysollib/gamedb.py | 2 +- pysollib/games/yukon.py | 8 ++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 html-src/rules/canberra.html diff --git a/html-src/rules/canberra.html b/html-src/rules/canberra.html new file mode 100644 index 00000000..9885ccb4 --- /dev/null +++ b/html-src/rules/canberra.html @@ -0,0 +1,12 @@ +

Canberra

+

+Yukon type. 1 deck. 1 redeal. + +

Object

+

+Move all cards to the foundations. + +

Quick Description

+

+Like Australian Patience, +but with a redeal. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index f12c7a13..8c49fc2d 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -575,7 +575,7 @@ class GI: ('fc-2.20', tuple(range(855, 897))), ('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) + tuple(range(13160, 13163)) + (16682,)), - ('dev', tuple(range(906, 914)) + tuple(range(11017, 11020)) + + ('dev', tuple(range(906, 915)) + tuple(range(11017, 11020)) + tuple(range(22303, 22311)) + tuple(range(22353, 22361))), ) diff --git a/pysollib/games/yukon.py b/pysollib/games/yukon.py index 921e6a5c..aef1ce0a 100644 --- a/pysollib/games/yukon.py +++ b/pysollib/games/yukon.py @@ -455,6 +455,7 @@ class Panopticon(TenAcross): # ************************************************************************ # * Australian Patience # * Tasmanian Patience +# * Canberra # * Raw Prawn # * Bim Bom # ************************************************************************ @@ -486,6 +487,11 @@ class TasmanianPatience(AustralianPatience): AustralianPatience.createGame(self, max_rounds=-1, num_deal=3) +class Canberra(AustralianPatience): + def createGame(self): + AustralianPatience.createGame(self, max_rounds=2) + + class RawPrawn(AustralianPatience): RowStack_Class = Yukon_SS_RowStack @@ -821,3 +827,5 @@ registerGame(GameInfo(857, TasmanianPatience, "Tasmanian Patience", registerGame(GameInfo(897, Kiev, "Kiev", GI.GT_SPIDER, 1, 0, GI.SL_BALANCED, altnames=('Kyiv',))) +registerGame(GameInfo(914, Canberra, "Canberra", + GI.GT_YUKON, 1, 1, GI.SL_BALANCED))