Male_zoo_Projekt_SI/Animals/elephant.py

32 lines
924 B
Python
Raw Normal View History

2024-03-22 16:59:39 +01:00
from animal import Animal
import pygame
from datetime import datetime
class Elephant(Animal):
def __init__(self, x, y, adult=False):
2024-03-22 20:11:58 +01:00
Elephant_image = pygame.image.load('images/elephant.png')
name = 'elephant'
environment = "hot"
2024-03-23 13:55:16 +01:00
if adult:
elephant_food = 'leavs'
food_image = 'images/leaves.png'
else:
elephant_food = 'milk'
food_image = 'images/milk.png'
super().__init__(x, y,name, Elephant_image, food_image,elephant_food, environment, adult)
2024-03-22 16:59:39 +01:00
self._starttime = datetime.now()
def getting_hungry(self):
checktime = datetime.now()
delta = checktime - self._starttime
2024-05-10 01:56:12 +02:00
minutes_passed = delta.total_seconds() / 50
2024-03-22 16:59:39 +01:00
self._feed += minutes_passed
2024-05-10 01:56:12 +02:00
self._starttime = checktime
if self._feed > 5:
self._feed = 5
return self._feed