Skip to content

Commit

Permalink
New alternate names.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Dec 26, 2023
1 parent 499439b commit 20e0de1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion pysollib/games/fortythieves.py
Original file line number Diff line number Diff line change
Expand Up @@ -1451,7 +1451,8 @@ def inSuitSequence(self, card1, card2):
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL,
altnames=("Twos", "Les Deux")))
registerGame(GameInfo(196, Corona, "Corona",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED))
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED,
altnames=("Round Dozen")))
registerGame(GameInfo(195, Quadrangle, "Quadrangle",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(110, Courtyard, "Courtyard",
Expand Down
3 changes: 2 additions & 1 deletion pysollib/games/numerica.py
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,8 @@ def startGame(self):
GI.GT_NUMERICA | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0,
GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(402, Toad, "Toad",
GI.GT_NUMERICA, 2, 0, GI.SL_BALANCED))
GI.GT_NUMERICA, 2, 0, GI.SL_BALANCED,
altnames=("Toad in the Hole")))
registerGame(GameInfo(430, PussInTheCorner, "Puss in the Corner",
GI.GT_NUMERICA, 1, 1, GI.SL_BALANCED))
registerGame(GameInfo(435, Shifting, "Shifting",
Expand Down
3 changes: 2 additions & 1 deletion pysollib/games/royalcotillion.py
Original file line number Diff line number Diff line change
Expand Up @@ -1397,7 +1397,8 @@ def _autoDeal(self, sound=True):
registerGame(GameInfo(676, BoxingTheCompass, "Boxing the Compass",
GI.GT_2DECK_TYPE, 2, 1, GI.SL_BALANCED))
registerGame(GameInfo(693, Colonel, "Colonel",
GI.GT_2DECK_TYPE, 2, 0, GI.SL_MOSTLY_SKILL))
GI.GT_2DECK_TYPE, 2, 0, GI.SL_MOSTLY_SKILL,
altnames=("Uncle Walter's",)))
registerGame(GameInfo(695, TheRedAndTheBlack, "The Red and the Black",
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(748, TwilightZone, "Twilight Zone",
Expand Down
3 changes: 2 additions & 1 deletion pysollib/games/tournament.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ def fillStack(self, stack):

# register the game
registerGame(GameInfo(303, Tournament, "Tournament",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_MOSTLY_LUCK))
GI.GT_2DECK_TYPE, 2, 2, GI.SL_MOSTLY_LUCK,
altnames=("Marechal Saxe", ),))
registerGame(GameInfo(304, LaNivernaise, "La Nivernaise",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_MOSTLY_LUCK,
altnames=("Napoleon's Flank", ),))
Expand Down

0 comments on commit 20e0de1

Please sign in to comment.