コード例 #1
0
 def __eq__(self, other):
     return isinstance(other, CooperationCard) and TraitCard.__eq__(self,
                                                                    other)
コード例 #2
0
 def __eq__(self, other):
     return isinstance(other, PackHuntingCard) and TraitCard.__eq__(
         self, other)
コード例 #3
0
 def __eq__(self, other):
     return isinstance(other, FatTissueCard) and other.stored_food == self.stored_food and \
            TraitCard.__eq__(self, other)
コード例 #4
0
ファイル: fat_tissue.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, FatTissueCard) and other.stored_food == self.stored_food and \
            TraitCard.__eq__(self, other)
コード例 #5
0
ファイル: hard_shell.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, HardShellCard) and TraitCard.__eq__(self, other)
コード例 #6
0
ファイル: fertile.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, FertileCard) and TraitCard.__eq__(self, other)
コード例 #7
0
 def __eq__(self, other):
     return isinstance(other, PackHuntingCard) and TraitCard.__eq__(self, other)
コード例 #8
0
 def __eq__(self, other):
     return isinstance(other, WarningCallCard) and TraitCard.__eq__(self, other)
コード例 #9
0
ファイル: scavenger.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, ScavengerCard) and TraitCard.__eq__(self,
                                                                  other)
コード例 #10
0
ファイル: cooperation.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, CooperationCard) and TraitCard.__eq__(self,
                                                                    other)
コード例 #11
0
 def __eq__(self, other):
     return isinstance(other, HornCard) and TraitCard.__eq__(self, other)
コード例 #12
0
 def __eq__(self, other):
     return isinstance(other, FertileCard) and TraitCard.__eq__(self, other)
コード例 #13
0
 def __eq__(self, other):
     return isinstance(other, CarnivoreCard) and TraitCard.__eq__(
         self, other)
コード例 #14
0
ファイル: long_neck.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, LongNeckCard) and TraitCard.__eq__(self, other)
コード例 #15
0
 def __eq__(self, other):
     return isinstance(other, ScavengerCard) and TraitCard.__eq__(
         self, other)
コード例 #16
0
ファイル: climbing.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, ClimbingCard) and TraitCard.__eq__(self, other)
コード例 #17
0
ファイル: carnivore.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, CarnivoreCard) and TraitCard.__eq__(self, other)
コード例 #18
0
 def __eq__(self, other):
     return isinstance(other, LongNeckCard) and TraitCard.__eq__(
         self, other)
コード例 #19
0
 def __eq__(self, other):
     return isinstance(other, SymbiosisCard) and TraitCard.__eq__(
         self, other)
コード例 #20
0
 def __eq__(self, other):
     return isinstance(other, ClimbingCard) and TraitCard.__eq__(
         self, other)
コード例 #21
0
ファイル: symbiosis.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, SymbiosisCard) and TraitCard.__eq__(self, other)
コード例 #22
0
ファイル: ambush.py プロジェクト: bennn/Evolution
 def __eq__(self, other):
     return isinstance(other, AmbushCard) and TraitCard.__eq__(self, other)
コード例 #23
0
 def __eq__(self, other):
     return isinstance(other, BurrowingCard) and TraitCard.__eq__(self, other)