Example #1
0
 def __init__(self, player):
     Effect.__init__(self, player)
Example #2
0
 def __init__(self, player, card, color=None):
     Effect.__init__(self, player)
     self.card = card
     self.color = color if color else card.color
Example #3
0
 def __init__(self):
     Effect.__init__(self, None)
Example #4
0
 def __init__(self, winner):
     Effect.__init__(self, winner)
Example #5
0
 def __init__(self, player, cards):
     Effect.__init__(self, player)
     self._cards = cards