16 lines
439 B
Python
16 lines
439 B
Python
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.gameState.currentPlayer.redSpecialLit:
|
|
config.RED_SPECIAL(self)
|
|
self.gameState.currentPlayer.resetRedSpecial()
|
|
|
|
|