コード例 #1
0
 def __init__(self, x, y, game, **cap):
     kwdefault(cap, base_suit=ANY_SUIT)
     SS_FoundationStack.__init__(self, x, y, game, ANY_SUIT, **cap)
コード例 #2
0
ファイル: mughal.py プロジェクト: hayate891/PySolFC
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, max_move=0)
     SS_FoundationStack.__init__(self, x, y, game, suit, **cap)
コード例 #3
0
ファイル: beleagueredcastle.py プロジェクト: joeraz/PySolFC
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, mod=13, min_cards=1, max_move=0, base_rank=ANY_RANK)
     SS_FoundationStack.__init__(self, x, y, game, suit, **cap)
コード例 #4
0
ファイル: mughal.py プロジェクト: jimsize/PySolFC
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, max_move=0)
     SS_FoundationStack.__init__(self, x, y, game, suit, **cap)
コード例 #5
0
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, base_rank=suit, mod=13, dir=suit + 1, max_move=0)
     SS_FoundationStack.__init__(self, x, y, game, suit, **cap)
コード例 #6
0
ファイル: beleagueredcastle.py プロジェクト: shlomif/PySolFC
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, mod=13, min_cards=1, max_move=0, base_rank=ANY_RANK)
     SS_FoundationStack.__init__(self, x, y, game, suit, **cap)
コード例 #7
0
ファイル: numerica.py プロジェクト: shlomif/PySolFC
 def __init__(self, x, y, game, **cap):
     kwdefault(cap, base_suit=ANY_SUIT)
     SS_FoundationStack.__init__(self, x, y, game, ANY_SUIT, **cap)
コード例 #8
0
ファイル: yukon.py プロジェクト: shlomif/PySolFC
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, base_rank=suit, mod=13, dir=suit+1, max_move=0)
     SS_FoundationStack.__init__(self, x, y, game, suit, **cap)