This commit is contained in:
Jonas Zeunert
2022-09-03 14:22:29 +02:00
parent e418fc3b9b
commit 93b5cf3465
11 changed files with 29 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
from Target import Target
from Sound import Sound
class CanalButtonTopTarget(Target):
@@ -6,4 +7,5 @@ class CanalButtonTopTarget(Target):
super().__init__(20000, "Canal Button Bottom")
def hit(self):
Sound(2).play()
super().hit()

View File

@@ -1,4 +1,5 @@
from Target import Target
from Sound import Sound
class LeftLaneButton4Target(Target):
@@ -6,4 +7,5 @@ class LeftLaneButton4Target(Target):
super().__init__(20000, "Canal Button Middle Bottom")
def hit(self):
Sound(1).play()
super().hit()

View File

@@ -1,4 +1,5 @@
from Target import Target
from Sound import Sound
class LeftLaneButton3Target(Target):
@@ -6,4 +7,5 @@ class LeftLaneButton3Target(Target):
super().__init__(20000, "Canal Button Middle")
def hit(self):
Sound(2).play()
super().hit()

View File

@@ -1,4 +1,5 @@
from Target import Target
from Sound import Sound
class LeftLaneButton2Target(Target):
@@ -6,4 +7,5 @@ class LeftLaneButton2Target(Target):
super().__init__(20000, "Canal Button Middle Top")
def hit(self):
Sound(1).play()
super().hit()

View File

@@ -1,8 +1,10 @@
from Target import Target
from Sound import Sound
class LeftLaneButton1Target(Target):
def __init__(self):
super().__init__(100, 'Canal Button Top')
def hit(self):
Sound(2).play()
super().hit()