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

13 lines
417 B
Python

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