コード例 #1
0
ファイル: official.py プロジェクト: seventh/duo
 def __init__(self, player):
     Effect.__init__(self, player)
コード例 #2
0
ファイル: official.py プロジェクト: seventh/duo
 def __init__(self, player, card, color=None):
     Effect.__init__(self, player)
     self.card = card
     self.color = color if color else card.color
コード例 #3
0
ファイル: official.py プロジェクト: seventh/duo
 def __init__(self):
     Effect.__init__(self, None)
コード例 #4
0
ファイル: official.py プロジェクト: seventh/duo
 def __init__(self, winner):
     Effect.__init__(self, winner)
コード例 #5
0
ファイル: official.py プロジェクト: seventh/duo
 def __init__(self, player, cards):
     Effect.__init__(self, player)
     self._cards = cards