Skip to content

Commit

Permalink
Alternate names.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Mar 5, 2024
1 parent 1753f63 commit fc25981
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pysollib/games/capricieuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def startGame(self):
GI.GT_BAKERS_DOZEN | GI.GT_OPEN | GI.GT_STRIPPED, 2, 2,
GI.SL_MOSTLY_SKILL,
ranks=(0, 6, 7, 8, 9, 10, 11, 12),
altnames=('Persian Patience',)))
altnames=('Persian Patience', "Bezique")))
registerGame(GameInfo(673, Fifteen, "Fifteen",
GI.GT_BAKERS_DOZEN | GI.GT_OPEN, 2, 0,
GI.SL_MOSTLY_SKILL))
Expand Down
3 changes: 2 additions & 1 deletion pysollib/games/fan.py
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,8 @@ def _saveGameHook(self, p):
registerGame(GameInfo(87, ScotchPatience, "Scotch Patience",
GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(57, Shamrocks, "Shamrocks",
GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
altnames=("Three Card Fan",)))
registerGame(GameInfo(901, LaBelleLucie, "La Belle Lucie", # was: 32, 82
GI.GT_FAN_TYPE | GI.GT_OPEN, 1, 2, GI.SL_MOSTLY_SKILL,
altnames=("Fair Lucy", "Midnight Oil", "Lovely Lucy",
Expand Down
3 changes: 2 additions & 1 deletion pysollib/games/fortythieves.py
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,8 @@ def inSuitSequence(self, card1, card2):
registerGame(GameInfo(131, DoubleRail, "Double Rail",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(199, SingleRail, "Single Rail",
GI.GT_FORTY_THIEVES, 1, 0, GI.SL_MOSTLY_LUCK))
GI.GT_FORTY_THIEVES, 1, 0, GI.SL_MOSTLY_LUCK,
altnames=("Auxiliary Sequences")))
registerGame(GameInfo(295, NapoleonsSquare, "Napoleon's Square",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(310, Emperor, "Emperor",
Expand Down
3 changes: 2 additions & 1 deletion pysollib/games/gypsy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,8 @@ def startGame(self):
registerGame(GameInfo(725, TopsyTurvyQueens, "Topsy-Turvy Queens",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED))
registerGame(GameInfo(792, KingsSecrets, "King's Secrets",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED))
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED,
altnames=('Royal Secrets',)))
registerGame(GameInfo(842, SwissPatience, "Swiss Patience",
GI.GT_GYPSY, 1, 0, GI.SL_BALANCED))
registerGame(GameInfo(890, YeastDough, "Yeast Dough",
Expand Down
5 changes: 3 additions & 2 deletions pysollib/games/sultan.py
Original file line number Diff line number Diff line change
Expand Up @@ -1437,8 +1437,9 @@ def fillStack(self, stack):
registerGame(GameInfo(354, Boudoir, "Boudoir",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_MOSTLY_LUCK))
registerGame(GameInfo(410, CaptiveQueens, "Captive Queens",
GI.GT_1DECK_TYPE, 1, 2, GI.SL_MOSTLY_LUCK,
altnames=("Quadrille",)))
GI.GT_1DECK_TYPE, 1, 2, GI.SL_LUCK,
altnames=("Quadrille", "La Francaise",
"Partners")))
registerGame(GameInfo(418, Contradance, "Contradance",
GI.GT_2DECK_TYPE, 2, 1, GI.SL_LUCK,
altnames=("Cotillion",)))
Expand Down

0 comments on commit fc25981

Please sign in to comment.