thiiiiings
This commit is contained in:
8
targets/bottom_lanes/LeftInlaneTarget.py
Normal file
8
targets/bottom_lanes/LeftInlaneTarget.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from targets.Target import Target
|
||||
|
||||
class LeftInlaneTarget(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Left Inlane')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
8
targets/bottom_lanes/LeftOutlaneTarget.py
Normal file
8
targets/bottom_lanes/LeftOutlaneTarget.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from targets.Target import Target
|
||||
|
||||
class LeftOutlaneTarget(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Left Outlane')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/bottom_lanes/RightInlaneTarget.py
Normal file
9
targets/bottom_lanes/RightInlaneTarget.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class RightInlaneTarget(Target):
|
||||
def __init__(self):
|
||||
super()
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
10
targets/bottom_lanes/RightOutlaneKickerTarget.py
Normal file
10
targets/bottom_lanes/RightOutlaneKickerTarget.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class RightOutlaneKickerTarget(Target):
|
||||
def __init__(self):
|
||||
super(10000, "Right Outlane Kicker")
|
||||
#Scores 30000, 50000 when lit and advances 1-2-3-4-5 sequence
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/bottom_lanes/RightOutlaneTarget.py
Normal file
9
targets/bottom_lanes/RightOutlaneTarget.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class RightOutlaneTarget(Target):
|
||||
def __init__(self):
|
||||
super(50000, "Right Outlane")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
0
targets/bottom_lanes/__init__.py
Normal file
0
targets/bottom_lanes/__init__.py
Normal file
BIN
targets/bottom_lanes/__pycache__/LeftInlaneTarget.cpython-38.pyc
Normal file
BIN
targets/bottom_lanes/__pycache__/LeftInlaneTarget.cpython-38.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
targets/bottom_lanes/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
targets/bottom_lanes/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user