diff --git a/app/main.py b/app/main.py index fa56336e..e371964d 100644 --- a/app/main.py +++ b/app/main.py @@ -1 +1,35 @@ -# write your code here +class Animal: + alive = [] + + def __init__( + self, + name: str, + health: int = 100, + hidden: bool = False + ) -> None: + self.name = name + self.health = health + self.hidden = hidden + Animal.alive.append(self) + + def remove_from_alive(self) -> None: + Animal.alive.remove(self) + + def __repr__(self) -> str: + return (f"{{Name: {self.name}, " + f"Health: {self.health}, " + f"Hidden: {self.hidden}}}") + + +class Herbivore(Animal): + def hide(self) -> None: + self.hidden = not self.hidden + + +class Carnivore(Animal): + def bite(self, other: Animal) -> None: + if (isinstance(other, Herbivore) + and other.hidden is False): + other.health -= 50 + if other.health <= 0: + other.remove_from_alive()