mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added Carousel game.
This commit is contained in:
parent
ceee32e212
commit
764fb5207e
3 changed files with 33 additions and 1 deletions
13
html-src/rules/carousel.html
Normal file
13
html-src/rules/carousel.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<h1>Carousel</h1>
|
||||||
|
<p>
|
||||||
|
Picture Gallery type. 2 decks. No redeal.
|
||||||
|
|
||||||
|
<h3>Object</h3>
|
||||||
|
<p>
|
||||||
|
Fill all of the foundations.
|
||||||
|
|
||||||
|
<h3>Quick Description</h3>
|
||||||
|
<p>
|
||||||
|
Like <a href="greatwheel.html">Great Wheel</a>,
|
||||||
|
but you can build on the stacks before the talon is
|
||||||
|
empty.
|
|
@ -604,7 +604,7 @@ class GI:
|
||||||
tuple(range(13168, 13170)) + tuple(range(18000, 18005)) +
|
tuple(range(13168, 13170)) + tuple(range(18000, 18005)) +
|
||||||
tuple(range(19000, 19012)) + tuple(range(22303, 22311)) +
|
tuple(range(19000, 19012)) + tuple(range(22303, 22311)) +
|
||||||
tuple(range(22353, 22361))),
|
tuple(range(22353, 22361))),
|
||||||
('dev', tuple(range(961, 962))),
|
('dev', tuple(range(961, 963))),
|
||||||
)
|
)
|
||||||
|
|
||||||
# deprecated - the correct way is to or a GI.GT_XXX flag
|
# deprecated - the correct way is to or a GI.GT_XXX flag
|
||||||
|
|
|
@ -317,6 +317,7 @@ class HugePictureGallery(PictureGallery):
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
# * Great Wheel
|
# * Great Wheel
|
||||||
# * Greater Wheel
|
# * Greater Wheel
|
||||||
|
# * Carousel
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -405,6 +406,20 @@ class GreaterWheel(GreatWheel):
|
||||||
def createGame(self):
|
def createGame(self):
|
||||||
PictureGallery.createGame(self, waste=True, numstacks=12)
|
PictureGallery.createGame(self, waste=True, numstacks=12)
|
||||||
|
|
||||||
|
|
||||||
|
class Carousel_RowStack(BasicRowStack):
|
||||||
|
def acceptsCards(self, from_stack, cards):
|
||||||
|
if not self.cards:
|
||||||
|
return True
|
||||||
|
c1, c2 = self.cards[-1], cards[0]
|
||||||
|
return c1.suit == c2.suit and c1.rank == c2.rank+1
|
||||||
|
|
||||||
|
getBottomImage = Stack._getTalonBottomImage
|
||||||
|
|
||||||
|
|
||||||
|
class Carousel(GreatWheel):
|
||||||
|
RowStack_Class = StackWrapper(Carousel_RowStack, max_accept=1)
|
||||||
|
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
# * Mount Olympus
|
# * Mount Olympus
|
||||||
# * Zeus
|
# * Zeus
|
||||||
|
@ -737,3 +752,7 @@ registerGame(GameInfo(932, DevilsGrip, "Devil's Grip",
|
||||||
))
|
))
|
||||||
registerGame(GameInfo(944, BlueJacket, "Blue Jacket",
|
registerGame(GameInfo(944, BlueJacket, "Blue Jacket",
|
||||||
GI.GT_PICTURE_GALLERY, 2, 0, GI.SL_MOSTLY_SKILL))
|
GI.GT_PICTURE_GALLERY, 2, 0, GI.SL_MOSTLY_SKILL))
|
||||||
|
registerGame(GameInfo(962, Carousel, "Carousel",
|
||||||
|
GI.GT_PICTURE_GALLERY | GI.GT_STRIPPED, 2, 0,
|
||||||
|
GI.SL_BALANCED, ranks=list(range(12)) # without Kings
|
||||||
|
))
|
||||||
|
|
Loading…
Add table
Reference in a new issue