Male_zoo_Projekt_SI/Animals/bear.py

27 lines
906 B
Python
Raw Permalink Normal View History

2024-03-22 20:11:58 +01:00
from animal import Animal
import pygame
from datetime import datetime
class Bear(Animal):
def __init__(self, x, y, adult=False):
2024-03-23 13:55:16 +01:00
name = 'bear'
image_path = self.choose_picture(name)
environment = "cold"
activity = 'nocturnal'
ill = self.is_ill()
2024-03-23 13:55:16 +01:00
bear_food = 'meat'
food_image = 'images/meat.png'
super().__init__(x, y,name, image_path, food_image,bear_food,environment, activity, ill, adult)
2024-03-22 20:11:58 +01:00
self._starttime = datetime.now()
def getting_hungry(self, const):
2024-03-22 20:11:58 +01:00
checktime = datetime.now()
delta = checktime - self._starttime
minutes_passed = delta.total_seconds() / (45)
2024-05-10 01:56:12 +02:00
self._starttime = checktime
2024-05-12 16:25:09 +02:00
if const.IS_NIGHT and self._feed < 10 and const.season != "winter":
self._feed += minutes_passed
2024-05-12 16:25:09 +02:00
self._feed = min(self._feed, 10)
2024-05-10 01:56:12 +02:00
return self._feed