thiiiiings
This commit is contained in:
12
targets/specials/SpecialOrangeTarget.py
Normal file
12
targets/specials/SpecialOrangeTarget.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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()
|
||||
12
targets/specials/SpecialRedTarget.py
Normal file
12
targets/specials/SpecialRedTarget.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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()
|
||||
8
targets/specials/SpinnerTarget.py
Normal file
8
targets/specials/SpinnerTarget.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from targets.Target import Target
|
||||
|
||||
class SpinnerTarget(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Spinner')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
0
targets/specials/__init__.py
Normal file
0
targets/specials/__init__.py
Normal file
BIN
targets/specials/__pycache__/SpecialOrangeTarget.cpython-38.pyc
Normal file
BIN
targets/specials/__pycache__/SpecialOrangeTarget.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/specials/__pycache__/SpecialRedTarget.cpython-38.pyc
Normal file
BIN
targets/specials/__pycache__/SpecialRedTarget.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/specials/__pycache__/SpinnerTarget.cpython-38.pyc
Normal file
BIN
targets/specials/__pycache__/SpinnerTarget.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/specials/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
targets/specials/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user