def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap,
               max_cards=12,
               max_move=0,
               base_rank=ANY_RANK,
               base_suit=ANY_SUIT)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #2
0
파일: mughal.py 프로젝트: hayate891/PySolFC
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, mod=12, dir=0, base_rank=NO_RANK, max_move=0)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #3
0
파일: mughal.py 프로젝트: jimsize/PySolFC
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, mod=12, dir=0, base_rank=NO_RANK, max_move=0)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #4
0
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, base_suit=0, mod=12, max_cards=120, max_move=0)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #5
0
 def __init__(self, x, y, game, suit=ANY_SUIT, **cap):
     kwdefault(cap, max_move=0, max_accept=0, max_cards=game.NCARDS)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, max_move=0, max_cards=48, max_accept=4, min_accept=4)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
     self.CARD_YOFFSET = self.game.app.images.CARDH // 10
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, mod=12, dir=0, base_suit=ANY_SUIT, max_move=0)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #8
0
 def __init__(self, x, y, game, suit=ANY_SUIT, **cap):
     kwdefault(cap, max_move=0, max_accept=0, max_cards=game.NCARDS)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #9
0
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, max_cards=12, max_move=0, base_rank=ANY_RANK,
               base_suit=ANY_SUIT)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #10
0
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, mod=12, dir=0, base_suit=ANY_SUIT, max_move=0)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
예제 #11
0
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, max_move=0, max_cards=48, max_accept=4, min_accept=4)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)
     self.CARD_YOFFSET = self.game.app.images.CARDH // 10
예제 #12
0
 def __init__(self, x, y, game, suit, **cap):
     kwdefault(cap, base_suit=0, mod=12, max_cards=120, max_move=0)
     AbstractFoundationStack.__init__(self, x, y, game, suit, **cap)