diff frontends/wix/card_game.py @ 94:1eb5ccead43c

Tarot game: basic trick - plugin tarot: it's now possible to make a basic game until the end \o/. Score are calculated but not sent to players yet.
author Goffi <goffi@goffi.org>
date Tue, 01 Jun 2010 18:16:15 +0930
parents 2f87651a5ad8
children be206a3d1a9b
line wrap: on
line diff
--- a/frontends/wix/card_game.py	Sun May 30 15:33:08 2010 +0930
+++ b/frontends/wix/card_game.py	Tue Jun 01 18:16:15 2010 +0930
@@ -33,7 +33,7 @@
 MIN_WIDTH = 950 #Minimum size of the panel
 MIN_HEIGHT = 500
 
-suits_order = ['pique', 'coeur', 'trefle', 'carreau', 'atout'] #I have swith the usual order 'trefle' and 'carreau' because card are more easy to see if couleur change (black, red, black, red)
+suits_order = ['pique', 'coeur', 'trefle', 'carreau', 'atout'] #I have swith the usual order 'trefle' and 'carreau' because card are more easy to see if suit colour change (black, red, black, red)
 values_order = map(str,range(1,11))+["valet","cavalier","dame","roi"]
 
 class Card():