Change move value
This commit is contained in:
parent
15c948b080
commit
cbca7f2b57
@ -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'
|
||||
|
@ -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'
|
||||
|
3
main.py
3
main.py
@ -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)
|
||||
|
||||
|
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user