def __init__(self): Fauna.__init__(self, "Ope'ape'a", 5) IElevation.__init__(self) ICanopy.__init__(self) Identifiable.__init__(self) Insect.__init__(self) Vegetation.__init__(self)
def add_fish(self): """Occassionally add a scary fish to the play field.""" self.fauna += [ Fauna(variety=random.choice(range(0, 5)), size=self.flora_size, pos_x=self.max_x + self.flora_size, pos_y=random.choice(range(0, self.min_y))) ]
def __init__(self): Fauna.__init__(self, "River Dolphin", 13) IBrackish.__init__(self) ISaltwater.__init__(self) Identifiable.__init__(self) Fish.__init__(self)
def __init__(self): Fauna.__init__(self, "Hawaiian Happy-Face Spider", .5) IStagnant.__init__(self) Identifiable.__init__(self) Insect.__init__(self)
def __init__(self): Fauna.__init__(self, "Kīkākapu", 1) IBrackish.__init__(self) IStagnant.__init__(self) Identifiable.__init__(self) Fish.__init__(self)
def __init__(self): Fauna.__init__(self, "Gold Dust Day Gecko", 2) ICanopy.__init__(self) Identifiable.__init__(self) Insect.__init__(self)
def __init__(self): Fauna.__init__(self, "Pueo", 8) IGroundNesting.__init__(self) ICanopy.__init__(self) Identifiable.__init__(self) Rodent.__init__(self)
def __init__(self): Fauna.__init__(self, "Nene Goose", 7) IGroundNesting.__init__(self) Identifiable.__init__(self) Vegetation.__init__(self)