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

12 lines
356 B
Python

from targets.Target import Target
# A standup target. When lit, it scores the Red Special (operator
# adjustable) for Nothing, Extra Ball, Replay, Super Bonus, or 1,000,000
# points. Scores 10,000 points when not lit.
class FixedSpecialRedTarget(Target):
def __init__(self):
super(10000, "Special Red")
def hit(self):
super.hit()