thiiiiings

This commit is contained in:
Jonas Zeunert
2020-02-13 19:05:55 +01:00
parent 82f1ad6ed8
commit 7414734dad
719 changed files with 41551 additions and 227 deletions

View 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()

View 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()

View File

@@ -0,0 +1,9 @@
from targets.Target import Target
class RightInlaneTarget(Target):
def __init__(self):
super()
def hit(self):
super.hit()

View 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()

View 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()

View File