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