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
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, max_move=0)
     SS_FoundationStack.__init__(self, x, y, game, suit, **cap)
示例#3
0
 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
 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
 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)