From d00762b352c6c82bf6a24155b64c3dc6b869ce85 Mon Sep 17 00:00:00 2001 From: Joe R Date: Wed, 23 Aug 2023 18:28:51 -0400 Subject: [PATCH] Grand Duchess is in the Numerica game family. --- html-src/rules/grandduchess.html | 2 +- html-src/rules/grandduchessplus.html | 2 +- html-src/rules/parisienne.html | 2 +- pysollib/games/grandduchess.py | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/html-src/rules/grandduchess.html b/html-src/rules/grandduchess.html index 49859ee0..12bbbbfa 100644 --- a/html-src/rules/grandduchess.html +++ b/html-src/rules/grandduchess.html @@ -1,6 +1,6 @@

Grand Duchess

-Two-Deck game type. 2 decks. 3 redeals. +Numerica type. 2 decks. 3 redeals.

Object

diff --git a/html-src/rules/grandduchessplus.html b/html-src/rules/grandduchessplus.html index db2e8641..436cff26 100644 --- a/html-src/rules/grandduchessplus.html +++ b/html-src/rules/grandduchessplus.html @@ -1,6 +1,6 @@

Grand Duchess +

-Two-Deck game type. 2 decks. 3 redeals. +Numerica type. 2 decks. 3 redeals.

Object

diff --git a/html-src/rules/parisienne.html b/html-src/rules/parisienne.html index 642bfd7d..30b64612 100644 --- a/html-src/rules/parisienne.html +++ b/html-src/rules/parisienne.html @@ -1,6 +1,6 @@

Parisienne

-Two-Deck game type. 2 decks. 3 redeals. +Numerica type. 2 decks. 3 redeals.

Object

diff --git a/pysollib/games/grandduchess.py b/pysollib/games/grandduchess.py index bf18769b..717e967c 100644 --- a/pysollib/games/grandduchess.py +++ b/pysollib/games/grandduchess.py @@ -154,10 +154,10 @@ class GrandDuchessPlus(GrandDuchess): registerGame(GameInfo(557, GrandDuchess, "Grand Duchess", - GI.GT_2DECK_TYPE, 2, 3, + GI.GT_NUMERICA, 2, 3, altnames=('Duchess de Luynes'))) registerGame(GameInfo(617, Parisienne, "Parisienne", - GI.GT_2DECK_TYPE, 2, 3, + GI.GT_NUMERICA, 2, 3, altnames=('La Parisienne', 'Parisian'))) registerGame(GameInfo(618, GrandDuchessPlus, "Grand Duchess +", - GI.GT_2DECK_TYPE, 2, 3)) + GI.GT_NUMERICA, 2, 3))