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

Added Canberra game.

This commit is contained in:
Joe R 2023-08-30 21:24:50 -04:00
parent 96351ef518
commit fc84e712b3
3 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<h1>Canberra</h1>
<p>
Yukon type. 1 deck. 1 redeal.
<h3>Object</h3>
<p>
Move all cards to the foundations.
<h3>Quick Description</h3>
<p>
Like <a href="austalianpatience.html">Australian Patience</a>,
but with a redeal.

View file

@ -575,7 +575,7 @@ class GI:
('fc-2.20', tuple(range(855, 897))), ('fc-2.20', tuple(range(855, 897))),
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) + ('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
tuple(range(13160, 13163)) + (16682,)), 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))), tuple(range(22303, 22311)) + tuple(range(22353, 22361))),
) )

View file

@ -455,6 +455,7 @@ class Panopticon(TenAcross):
# ************************************************************************ # ************************************************************************
# * Australian Patience # * Australian Patience
# * Tasmanian Patience # * Tasmanian Patience
# * Canberra
# * Raw Prawn # * Raw Prawn
# * Bim Bom # * Bim Bom
# ************************************************************************ # ************************************************************************
@ -486,6 +487,11 @@ class TasmanianPatience(AustralianPatience):
AustralianPatience.createGame(self, max_rounds=-1, num_deal=3) AustralianPatience.createGame(self, max_rounds=-1, num_deal=3)
class Canberra(AustralianPatience):
def createGame(self):
AustralianPatience.createGame(self, max_rounds=2)
class RawPrawn(AustralianPatience): class RawPrawn(AustralianPatience):
RowStack_Class = Yukon_SS_RowStack RowStack_Class = Yukon_SS_RowStack
@ -821,3 +827,5 @@ registerGame(GameInfo(857, TasmanianPatience, "Tasmanian Patience",
registerGame(GameInfo(897, Kiev, "Kiev", registerGame(GameInfo(897, Kiev, "Kiev",
GI.GT_SPIDER, 1, 0, GI.SL_BALANCED, GI.GT_SPIDER, 1, 0, GI.SL_BALANCED,
altnames=('Kyiv',))) altnames=('Kyiv',)))
registerGame(GameInfo(914, Canberra, "Canberra",
GI.GT_YUKON, 1, 1, GI.SL_BALANCED))