Random dunno

This commit is contained in:
Jonas Zeunert
2022-06-02 21:22:03 +02:00
parent 65873496f6
commit 3d2008dc4d
21 changed files with 72 additions and 72 deletions

View File

@@ -4,16 +4,16 @@ from Event import Event
class SpecialEvent(Event):
def __init__(self, name, playerState):
super().__init__(name)
self.playerState = playerState
self.gameState = playerState
def replay(self):
self.playerState.setReplayBall()
self.gameState.setReplayBall()
def extra_ball(self):
self.playerState.addBall()
self.gameState.addBall()
def points(self):
self.playerState.addPoints(self.points)
self.gameState.addPoints(self.points)
def super_bonus(self):
pass