projekt_gra_turowa/rycerz.py
2024-12-09 19:59:28 +01:00

14 lines
252 B
Python

from jednostka import Jednostka
class Rycerz(Jednostka):
def __init__(self):
super().__init__(100, 20, 1, 5)
def __str__(self):
return 'R'
def wyswietl_stan(self):
print('Rycerz')
super().wyswietl_stan()