17 lines
451 B
Python
17 lines
451 B
Python
from events.SpecialEvent import SpecialEvent
|
|
|
|
import config
|
|
|
|
|
|
class OrangeSpecialEvent(SpecialEvent):
|
|
def __init__(self, gameState):
|
|
super().__init__("Orange Special Event", gameState)
|
|
self.points = 200000
|
|
|
|
def trigger(self, target):
|
|
super().trigger(target)
|
|
if self.gameState.currentPlayer.orangeSpecialLit:
|
|
config.ORANGE_SPECIAL(self)
|
|
self.gameState.currentPlayer.resetOrangeSpecial()
|
|
|