thiiiiings

This commit is contained in:
Jonas Zeunert
2020-02-13 19:05:55 +01:00
parent 82f1ad6ed8
commit 7414734dad
719 changed files with 41551 additions and 227 deletions

View 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()

View 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()

View 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()

View 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()

View File

Binary file not shown.