"""
Random Events Package
Unexpected positive and negative events

Modules:
- positive: Lucky and positive surprises
- negative: Unfortunate events and mishaps
"""

from .positive import *
from .negative import *

__all__ = [
    # Positive
    'foundAPenny',
    'freeConcert',
    'foundMoneyStreet',
    'freeUpgrade',
    'unexpectedCompliment',
    'perfectParkingSpot',
    'rainbowSighting',
    # Negative
    'carCrash',
    'oneTimeEventTest',
    'lowAffinity',
    'spilledDrink',
    'phoneDropped',
    'birdPooped',
    'forgotWallet',
    'missedBus',
    'badHairDay',
    'caughtInRain',
    'lostKeys',
    'ruinedClothes',
    'badRestaurantExperience',
    'sleepThroughAlarm',
    'packageStolen',
    # Technology & Modern Problems
    'phoneBreakdown',
    'dataLoss',
    'socialMediaCanceled',
    'cyberbullying',
    'accountHacked',
]
