Very much done

This commit is contained in:
Jonas Zeunert
2021-03-07 10:51:24 +01:00
parent f07c686b68
commit c54ab2e311
47 changed files with 339 additions and 77 deletions

15
events/RedSpecialEvent.py Normal file
View File

@@ -0,0 +1,15 @@
from events.SpecialEvent import SpecialEvent
import config
class RedSpecialEvent(SpecialEvent):
def __init__(self, playerState):
super().__init__("Red Special Event", playerState)
self.points = 990000
def trigger(self, target):
super().trigger(target)
if self.playerState().redSpecialLit:
config.RED_SPECIAL(self)
self.playerState().resetRedSpecial()