Files
flippr-game/targets/specials/SpecialOrangeTarget.py
Jonas Zeunert 7414734dad thiiiiings
2020-02-13 19:05:55 +01:00

12 lines
365 B
Python

from 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, "Special Orange")
def hit(self):
super.hit()