projekt_gra_turowa/lucznik.py
2024-12-11 14:56:19 +01:00

14 lines
254 B
Python

from jednostka import Jednostka
class Lucznik(Jednostka):
def __init__(self):
super().__init__(60, 10, 3, 9)
def __str__(self):
return 'L'
def wyswietl_stan(self):
print('Łucznik')
super().wyswietl_stan()