Skip to content

Commit

Permalink
.!.
Browse files Browse the repository at this point in the history
  • Loading branch information
zaebalsya1 committed Nov 27, 2024
1 parent faa256e commit 78c94fe
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
# write your code here
class Animal:
alive: list["Animal"] = []

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:
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, target: "Animal") -> None:
if not isinstance(target, Herbivore):
return
if target.hidden:
return

target.health -= 50
if target.health <= 0:
target.die()

0 comments on commit 78c94fe

Please sign in to comment.