merged
This commit is contained in:
8
src/targets/FifthFixedTarget.py
Normal file
8
src/targets/FifthFixedTarget.py
Normal 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()
|
||||||
8
src/targets/FourthFixedTarget.py
Normal file
8
src/targets/FourthFixedTarget.py
Normal 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()
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
from src.targets.Target import Target
|
from src.targets.Target import Target
|
||||||
|
|
||||||
|
|
||||||
class LeftDropTarget(Target):
|
class LeftDropTarget(Target):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super()
|
super(100, 'Left Drop Target')
|
||||||
|
|
||||||
def hit(self):
|
def hit(self):
|
||||||
super.hit()
|
super.hit()
|
||||||
8
src/targets/LeftInlaneTarget.py
Normal file
8
src/targets/LeftInlaneTarget.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from Target import Target
|
||||||
|
|
||||||
|
class LeftInlaneTarget(Target):
|
||||||
|
def __init__(self):
|
||||||
|
super(100, 'Left Inlane')
|
||||||
|
|
||||||
|
def hit(self):
|
||||||
|
super.hit()
|
||||||
8
src/targets/LeftLaneButton1Target.py
Normal file
8
src/targets/LeftLaneButton1Target.py
Normal 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()
|
||||||
8
src/targets/LeftOutlaneTarget.py
Normal file
8
src/targets/LeftOutlaneTarget.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from Target import Target
|
||||||
|
|
||||||
|
class LeftOutlaneTarget(Target):
|
||||||
|
def __init__(self):
|
||||||
|
super(100, 'Left Outlane')
|
||||||
|
|
||||||
|
def hit(self):
|
||||||
|
super.hit()
|
||||||
8
src/targets/LeftSlingshotTarget.py
Normal file
8
src/targets/LeftSlingshotTarget.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from Target import Target
|
||||||
|
|
||||||
|
class LeftSlingshotTarget(Target):
|
||||||
|
def __init__(self):
|
||||||
|
super(100, 'Left Slingshot')
|
||||||
|
|
||||||
|
def hit(self):
|
||||||
|
super.hit()
|
||||||
8
src/targets/MiddleDropTarget.py
Normal file
8
src/targets/MiddleDropTarget.py
Normal 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()
|
||||||
8
src/targets/MiddleLeftDropTarget.py
Normal file
8
src/targets/MiddleLeftDropTarget.py
Normal 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()
|
||||||
8
src/targets/MiddleRightDropTarget.py
Normal file
8
src/targets/MiddleRightDropTarget.py
Normal 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()
|
||||||
@@ -5,4 +5,4 @@ class OutholeTarget(Target):
|
|||||||
super(100, 'Outhole Target')
|
super(100, 'Outhole Target')
|
||||||
|
|
||||||
def hit(self):
|
def hit(self):
|
||||||
super.hit()
|
super.hit()
|
||||||
|
|||||||
8
src/targets/ReboundContactTarget.py
Normal file
8
src/targets/ReboundContactTarget.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from Target import Target
|
||||||
|
|
||||||
|
class ReboundContactTarget(Target):
|
||||||
|
def __init__(self):
|
||||||
|
super(100, 'Rebound Contact')
|
||||||
|
|
||||||
|
def hit(self):
|
||||||
|
super.hit()
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
from src.targets.Target import Target
|
from src.targets.Target import Target
|
||||||
|
|
||||||
|
|
||||||
class RightDropTarget(Target):
|
class RightDropTarget(Target):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super()
|
super(100, 'Right Drop Target')
|
||||||
|
|
||||||
def hit(self):
|
def hit(self):
|
||||||
super.hit()
|
super.hit()
|
||||||
8
src/targets/RightPopBumperTarget.py
Normal file
8
src/targets/RightPopBumperTarget.py
Normal 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()
|
||||||
8
src/targets/SpinnerTarget.py
Normal file
8
src/targets/SpinnerTarget.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from Target import Target
|
||||||
|
|
||||||
|
class SpinnerTarget(Target):
|
||||||
|
def __init__(self):
|
||||||
|
super(100, 'Spinner')
|
||||||
|
|
||||||
|
def hit(self):
|
||||||
|
super.hit()
|
||||||
8
src/targets/ThirdFixedTarget.py
Normal file
8
src/targets/ThirdFixedTarget.py
Normal 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()
|
||||||
8
src/targets/UPLeftDropTarget.py
Normal file
8
src/targets/UPLeftDropTarget.py
Normal 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()
|
||||||
8
src/targets/UPMiddleDropTarget.py
Normal file
8
src/targets/UPMiddleDropTarget.py
Normal 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()
|
||||||
8
src/targets/UPMiddleLeftDropTarget.py
Normal file
8
src/targets/UPMiddleLeftDropTarget.py
Normal 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()
|
||||||
8
src/targets/UPMiddleRightDropTarget.py
Normal file
8
src/targets/UPMiddleRightDropTarget.py
Normal 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()
|
||||||
Reference in New Issue
Block a user