thiiiiings
This commit is contained in:
12
targets/right_bank/RightBank.py
Normal file
12
targets/right_bank/RightBank.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from targets.Bank import Bank
|
||||
from targets.right_bank import RightBankLeft
|
||||
from targets.right_bank import RightBankMiddle
|
||||
from targets.right_bank import RightBankRight
|
||||
|
||||
class RightBank(Bank):
|
||||
def __init__(self):
|
||||
targets = [RightBankLeft(), RightBankMiddle(), RightBankRight]
|
||||
super(0, "Right Bank", targets)
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/right_bank/RightBankLeft.py
Normal file
9
targets/right_bank/RightBankLeft.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class RightBankLeft(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, "Right Bank Left")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/right_bank/RightBankMiddle.py
Normal file
9
targets/right_bank/RightBankMiddle.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class MiddleDropTarget(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, 'Right Bank Middle')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/right_bank/RightBankRight.py
Normal file
9
targets/right_bank/RightBankRight.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class RightBankRight(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, "Right Bank Right")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
0
targets/right_bank/__init__.py
Normal file
0
targets/right_bank/__init__.py
Normal file
BIN
targets/right_bank/__pycache__/RightBank.cpython-38.pyc
Normal file
BIN
targets/right_bank/__pycache__/RightBank.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/right_bank/__pycache__/RightBankLeft.cpython-38.pyc
Normal file
BIN
targets/right_bank/__pycache__/RightBankLeft.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/right_bank/__pycache__/RightBankMiddle.cpython-38.pyc
Normal file
BIN
targets/right_bank/__pycache__/RightBankMiddle.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/right_bank/__pycache__/RightBankRight.cpython-38.pyc
Normal file
BIN
targets/right_bank/__pycache__/RightBankRight.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/right_bank/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
targets/right_bank/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user