Add wyswietl_stan

This commit is contained in:
s500512 2024-12-09 19:59:28 +01:00
parent 8c1495992f
commit 411732e821
5 changed files with 22 additions and 0 deletions

View File

@ -16,3 +16,9 @@ class Jednostka(ABC):
if self.zdrowie > 0:
return True
return False
def wyswietl_stan(self):
print(f'Zdrowie: {self.zdrowie}')
print(f'Sila: {self.sila_ataku}')
print(f'Zasieg: {self.zasieg_ataku}')
print(f'Szybkosc: {self.szybkosc_ruchu}')

View File

@ -7,3 +7,7 @@ class Kusznik(Jednostka):
def __str__(self):
return 'K'
def wyswietl_stan(self):
print('Kusznik')
super().wyswietl_stan()

View File

@ -7,3 +7,7 @@ class Lucznik(Jednostka):
def __str__(self):
return 'L'
def wyswietl_stan(self):
print('Łucznik')
super().wyswietl_stan()

View File

@ -7,3 +7,7 @@ class Piechur(Jednostka):
def __str__(self):
return 'P'
def wyswietl_stan(self):
print('Piechur')
super().wyswietl_stan()

View File

@ -7,3 +7,7 @@ class Rycerz(Jednostka):
def __str__(self):
return 'R'
def wyswietl_stan(self):
print('Rycerz')
super().wyswietl_stan()