projekt_gra_turowa/lucznik.py

14 lines
254 B
Python
Raw Normal View History

2024-12-09 19:29:11 +01:00
from jednostka import Jednostka
class Lucznik(Jednostka):
def __init__(self):
2024-12-11 15:00:42 +01:00
super().__init__(60, 10, 3, 3)
2024-12-09 19:29:11 +01:00
def __str__(self):
return 'L'
2024-12-09 19:59:28 +01:00
def wyswietl_stan(self):
print('Łucznik')
super().wyswietl_stan()