Files
flippr-game/targets/specials/SpecialRedTarget.py
Jonas Zeunert e418fc3b9b some sounds
2022-09-03 14:12:00 +02:00

12 lines
407 B
Python

from Target import Target
from Sound import Sound
# 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().__init__(10000, "Special Red")
def hit(self):
Sound(4).play()
super().hit()