def getRarity(self):
     return FishGlobals.getRarity(self.genus, self.species)
示例#2
0
文件: FishBase.py 项目: z010155/c0d3
 def getRarity(self):
     return FishGlobals.getRarity(self.genus, self.species)
示例#3
0
 def getRarity(self):
     """
     Returns the rarity of this fish, based on the genus and species.
     This value is not stored, it is simply looked up in a table.
     """
     return FishGlobals.getRarity(self.genus, self.species)