diff --git a/app/main.py b/app/main.py index fa56336e..926c5981 100644 --- a/app/main.py +++ b/app/main.py @@ -1 +1,30 @@ -# write your code here +class Animal: + alive = [] + + def __init__(self, name: str, health: int = 100) -> None: + self.name = name + Animal.alive.append(self) + self.hidden = False + self.health = health + + def __sub__(self, other: int) -> int: + return self.health - other + + 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): + @staticmethod + def bite(prey: Animal) -> None: + if not prey.hidden and isinstance(prey, Herbivore): + prey.health -= 50 + if prey.health <= 0: + Animal.alive.remove(prey)