Files
flippr-game/src/targets/FixedSpecialOrangeTarget.py
Jonas Zeunert 19ba128a92 working
2020-01-28 11:58:52 +01:00

11 lines
374 B
Python

from src.targets.Target import Target
# A standup target. When lit, it scores the Orange Special (operator
# adjustable) for Nothing, Extra Ball, Replay, Super Bonus, or 300,000
# points. Scores 100,000 points when not lit.
class FixedSpecialOrangeTarget(Target):
def __init__(self):
super(100000, "Fixed Special Orange")
def hit(self):
super.hit()