Very much done

This commit is contained in:
Jonas Zeunert
2021-03-07 10:51:24 +01:00
parent f07c686b68
commit c54ab2e311
47 changed files with 339 additions and 77 deletions

View File

@@ -2,7 +2,7 @@ from Target import Target
class LeftInlaneTarget(Target):
def __init__(self):
super().__init__(100, 'Left Inlane')
super().__init__(3000, 'Left Inlane')
def hit(self):
super().hit()

View File

@@ -2,7 +2,7 @@ from Target import Target
class LeftOutlaneTarget(Target):
def __init__(self):
super().__init__(100, 'Left Outlane')
super().__init__(100000, 'Left Outlane')
def hit(self):
super().hit()

View File

@@ -3,7 +3,7 @@ from Target import Target
class RightInlaneTarget(Target):
def __init__(self):
super().__init__(100, 'Right Inlane')
super().__init__(30000, 'Right Inlane')
def hit(self):
super().hit()