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