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

Game categorization updates.

This commit is contained in:
Joe R 2024-03-28 23:32:56 -04:00
parent 9f78391e0d
commit 4231e96668
4 changed files with 11 additions and 6 deletions

View file

@ -802,5 +802,6 @@ registerGame(GameInfo(813, DoubleFreecellTd, "Double FreeCell (Traditional)",
registerGame(GameInfo(953, Petal, "Petal",
GI.GT_FREECELL | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(960, Obstruction, "Obstruction",
GI.GT_FREECELL | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
GI.GT_FREECELL | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0,
GI.SL_MOSTLY_SKILL,
subcategory=GI.GS_JOKER_DECK, trumps=list(range(2))))

View file

@ -543,7 +543,7 @@ registerGame(GameInfo(656, Accordion, "Bayan",
registerGame(GameInfo(772, Accordion2, "Accordion",
GI.GT_1DECK_TYPE, 1, 0, GI.SL_SKILL,
altnames=('Idle Year', 'Methuselah', 'Tower of Babel',
'One Away Three Away')))
'One Away Three Away', 'One-Handed')))
registerGame(GameInfo(773, RelaxedAccordion, "Relaxed Accordion",
GI.GT_1DECK_TYPE | GI.GT_RELAXED, 1, 0, GI.SL_SKILL))
registerGame(GameInfo(811, AccordionsRevenge, "Accordion's Revenge",

View file

@ -500,10 +500,12 @@ class TrumpsRow(Montana):
# * register the games
# ************************************************************************
def r(id, gameclass, name, game_type, decks, redeals, skill_level):
def r(id, gameclass, name, game_type, decks, redeals, skill_level,
numcards=78):
game_type = game_type | GI.GT_TAROCK | GI.GT_CONTRIB | GI.GT_ORIGINAL
gi = GameInfo(id, gameclass, name, game_type, decks, redeals, skill_level,
ranks=list(range(14)), trumps=list(range(22)))
ranks=list(range(14)), trumps=list(range(22)),
si={"ncards": numcards})
registerGame(gi)
return gi
@ -518,5 +520,6 @@ r(13166, Serpent, 'Serpent', GI.GT_TAROCK | GI.GT_OPEN, 2, 0,
r(13167, Rambling, 'Rambling', GI.GT_TAROCK | GI.GT_OPEN, 2, 0,
GI.SL_MOSTLY_SKILL)
r(13168, FoolsUp, "Fool's Up", GI.GT_TAROCK, 1, 0, GI.SL_LUCK)
r(13169, TrumpsRow, "Trumps Row", GI.GT_TAROCK, 1, 4, GI.SL_MOSTLY_SKILL)
r(13169, TrumpsRow, "Trumps Row", GI.GT_TAROCK, 1, 4, GI.SL_MOSTLY_SKILL,
numcards=73)
r(22232, LeGrandeTeton, 'Le Grande Teton', GI.GT_TAROCK, 1, 0, GI.SL_BALANCED)

View file

@ -908,7 +908,8 @@ registerGame(GameInfo(897, Kiev, "Kiev",
registerGame(GameInfo(914, Canberra, "Canberra",
GI.GT_YUKON, 1, 1, GI.SL_BALANCED))
registerGame(GameInfo(919, Dnieper, "Dnieper",
GI.GT_SPIDER, 1, 0, GI.SL_BALANCED))
GI.GT_SPIDER, 1, 0, GI.SL_BALANCED,
altnames=('Dnipro',)))
registerGame(GameInfo(925, YukonCells, "Yukon Cells",
GI.GT_YUKON, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(936, YukonKings, "Yukon Kings",