"""
Activity Events Package
Player-initiated activities and hobbies across all life stages

Modules:
- physical: Physical fitness and sports activities
- creative: Creative and artistic pursuits
- social: Social activities and community engagement
- learning: Educational activities and skill development
- hobbies: Personal hobbies and development
- career: Career and work-related activities
- seasonal: Seasonal and outdoor activities
"""

from .physical import *
from .creative import *
from .social import *
from .learning import *
from .hobbies import *
from .career import *
from .seasonal import *
from .family import *

__all__ = [
    # Physical Activities
    'joinSoccerTeam',
    'learnMartialArts',
    'runningHabit',
    'joinGym',
    'yogaClass',

    # Creative & Artistic Activities
    'learnPainting',
    'writingJournal',
    'learnPhotography',
    'theatreAudition',
    'craftingHobby',

    # Social Activities
    'joinClub',
    'volunteerWork',
    'bookClub',
    'gamingGroup',
    'communityEvent',

    # Learning & Educational Activities
    'onlineCourse',
    'learnLanguage',
    'codingBootcamp',
    'musicLessons',
    'cookingClasses',

    # Hobbies & Personal Development
    'gardening',
    'meditation',
    'birdWatching',
    'collectionHobby',
    'readingChallenge',

    # Career & Work Activities
    'professionalConference',
    'mentorJunior',
    'sideHustle',
    'networkingEvent',
    'professionalCertification',

    # Seasonal & Outdoor Activities
    'campingTrip',
    'skiingVacation',
    'beachDay',
    'hikingAdventure',
    'autumnActivities',

    # Family Activities
    'familyGameNight',
    'familyVacation',
    'teachSiblingSkill',
    'helpParentProject',
    'familyPhoto',
]
