projekt_gra_turowa/rycerz.py
2024-12-11 16:21:28 +01:00

14 lines
270 B
Python

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