Very much done
This commit is contained in:
15
events/RedSpecialEvent.py
Normal file
15
events/RedSpecialEvent.py
Normal 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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user