Change move value

This commit is contained in:
s500512 2024-12-11 15:00:42 +01:00
parent 15c948b080
commit cbca7f2b57
5 changed files with 4 additions and 7 deletions

View File

@ -3,7 +3,7 @@ from jednostka import Jednostka
class Kusznik(Jednostka):
def __init__(self):
super().__init__(80, 15, 2, 5)
super().__init__(80, 15, 2, 2)
def __str__(self):
return 'K'

View File

@ -3,7 +3,7 @@ from jednostka import Jednostka
class Lucznik(Jednostka):
def __init__(self):
super().__init__(60, 10, 3, 9)
super().__init__(60, 10, 3, 3)
def __str__(self):
return 'L'

View File

@ -14,9 +14,6 @@ if __name__ == '__main__':
plansza.dodaj_jednostke(r1, 1, 1)
plansza.dodaj_jednostke(l1, 2, 1)
plansza = Plansza()
plansza.dodaj_jednostke(k1, 5, 5)
plansza.dodaj_jednostke(p1, 3, 5)

View File

@ -3,7 +3,7 @@ from jednostka import Jednostka
class Piechur(Jednostka):
def __init__(self):
super().__init__(80, 15, 1, 7)
super().__init__(80, 15, 1, 1.5)
def __str__(self):
return 'P'

View File

@ -3,7 +3,7 @@ from jednostka import Jednostka
class Rycerz(Jednostka):
def __init__(self):
super().__init__(100, 20, 1, 5)
super().__init__(100, 20, 1, 1)
def __str__(self):
return 'R'