diff --git a/pysollib/games/freecell.py b/pysollib/games/freecell.py index df32ab7d..f8f6bf89 100644 --- a/pysollib/games/freecell.py +++ b/pysollib/games/freecell.py @@ -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)))) diff --git a/pysollib/games/pushpin.py b/pysollib/games/pushpin.py index b813738f..ee3e5f83 100644 --- a/pysollib/games/pushpin.py +++ b/pysollib/games/pushpin.py @@ -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", diff --git a/pysollib/games/special/tarock1.py b/pysollib/games/special/tarock1.py index 0e2570b4..2c3c8e7e 100644 --- a/pysollib/games/special/tarock1.py +++ b/pysollib/games/special/tarock1.py @@ -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) diff --git a/pysollib/games/yukon.py b/pysollib/games/yukon.py index f9eceb2f..0d4278cd 100644 --- a/pysollib/games/yukon.py +++ b/pysollib/games/yukon.py @@ -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",