This commit is contained in:
Jonas Zeunert
2020-01-28 12:00:30 +01:00
20 changed files with 139 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
from Target import Target
class FifthFixedTarget(Target):
def __init__(self):
super(100, 'Fixed Target #5')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class FourthFixedTarget(Target):
def __init__(self):
super(100, 'Fixed Target #4')
def hit(self):
super.hit()

View File

@@ -1,9 +1,8 @@
from src.targets.Target import Target
class LeftDropTarget(Target):
def __init__(self):
super()
super(100, 'Left Drop Target')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class LeftInlaneTarget(Target):
def __init__(self):
super(100, 'Left Inlane')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class LeftLaneButton1Target(Target):
def __init__(self):
super(100, 'Left Lane Button #1')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class LeftOutlaneTarget(Target):
def __init__(self):
super(100, 'Left Outlane')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class LeftSlingshotTarget(Target):
def __init__(self):
super(100, 'Left Slingshot')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class MiddleDropTarget(Target):
def __init__(self):
super(100, 'Middle Drop Target')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class MiddleLeftDropTarget(Target):
def __init__(self):
super(100, 'Middle Left Drop Target')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class MiddleRightDropTarget(Target):
def __init__(self):
super(100, 'Middle Right Drop Target')
def hit(self):
super.hit()

View File

@@ -5,4 +5,4 @@ class OutholeTarget(Target):
super(100, 'Outhole Target')
def hit(self):
super.hit()
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class ReboundContactTarget(Target):
def __init__(self):
super(100, 'Rebound Contact')
def hit(self):
super.hit()

View File

@@ -1,9 +1,8 @@
from src.targets.Target import Target
class RightDropTarget(Target):
def __init__(self):
super()
super(100, 'Right Drop Target')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class RightPopBumperTarget(Target):
def __init__(self):
super(100, 'Right Pop Bumper')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class SpinnerTarget(Target):
def __init__(self):
super(100, 'Spinner')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class ThirdFixedTarget(Target):
def __init__(self):
super(100, 'Fixed Target #3')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class UPLeftDropTarget(Target):
def __init__(self):
super(100, 'Upper Playfield: Left Drop Target')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class UPMiddleDropTarget(Target):
def __init__(self):
super(100, 'Upper Playfield: Middle Drop Target')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class UPMiddleLeftDropTarget(Target):
def __init__(self):
super(100, 'Upper Playfield: Middle Left Drop Target')
def hit(self):
super.hit()

View File

@@ -0,0 +1,8 @@
from Target import Target
class UPMiddleRightDropTarget(Target):
def __init__(self):
super(100, 'Upper Playfield: Middle Right Drop Target')
def hit(self):
super.hit()