Male_zoo_Projekt_SI/Animals/owl.py

26 lines
835 B
Python

from animal import Animal
import pygame
from datetime import datetime
class Owl(Animal):
def __init__(self, x, y, adult=False):
name = 'owl'
image_path = self.choose_picture(name)
environment = "medium"
food_image = 'images/grains.png'
parrot_food = 'grains'
activity = 'nocturnal'
super().__init__(x, y,name, image_path, food_image,parrot_food, environment, adult)
self._starttime = datetime.now()
def getting_hungry(self, const):
checktime = datetime.now()
delta = checktime - self._starttime
minutes_passed = delta.total_seconds() / (50)
self._starttime = checktime
if const.IS_NIGHT and self._feed < 10:
self._feed += minutes_passed
self._feed = min(self._feed, 10)
return self._feed