Added targets - not finished yet

This commit is contained in:
Jonas Zeunert
2020-01-23 22:26:03 +01:00
parent c0e9b8f319
commit 32f3965daa
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ from Target import Target
# points. Scores 10,000 points when not lit. # points. Scores 10,000 points when not lit.
class FixedSpecialRedTarget(Target): class FixedSpecialRedTarget(Target):
def __init__(self): def __init__(self):
super() super(10000, "Fixed Special Red")
def hit(self): def hit(self):
super.hit() super.hit()

View File

@@ -3,7 +3,7 @@ from Target import Target
class UPRightDropTarget(Target): class UPRightDropTarget(Target):
def __init__(self): def __init__(self):
super() super(100000, "Upper Playfield Right Drop Target")
def hit(self): def hit(self):
super.hit() super.hit()